relu | |
sigmoid | mainly used for binary classification |
softmax | |
softplus | |
tanh | |
selu | |
elu | |
expoenential |
Friday, January 29, 2021
Saturday, January 23, 2021
Steps in Tensorflow ML Program | ||
1 | Create Model | Create a Sequential model using Dense Layers or Convolutional Layers |
2 | Compile Model | Compile the model by specifying Optimizer and Loss function |
3 | Load the Dataset | |
4 | Train the model | Call model.fit by giving the training set. |
5 | Evaluate | Know the accuracy and loss |
6 | Predict | |
7 | Display Output |
Subscribe to:
Posts (Atom)
How to check local and global angular versions
Use the command ng version (or ng v ) to find the version of Angular CLI in the current folder. Run it outside of the Angular project, to f...
-
Most of the google tutorials on keras do not show how to display a confusion matrix for the solution. A confusion matrix can throw a clear l...
-
This error means you have created the DbContext but not configured/added it to the project using either DI in startup.cs or by using DbCon...
-
This happens when you dont define primary key for an entity type. Define a primary key either explicitly or implicitly.