Skip to content

Commit

Permalink
Notes - Life cycle of LSTM - Keras
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishekmamidi123 committed Apr 7, 2018
1 parent 2a2e73c commit 9353c95
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,17 @@
- Stochastic Gradient Descent - 'sgd'
- Adam - 'adam'
- RMSprop - 'rmsprop'
- Metrics: ['accuracy']
- Fit Network
-
- X, y, batch size and epochs are some of the parameters.
- Example:
- model.fit(X, y, batch_size=10, epochs=100, verbose=0)
- Evaluate Network
- Evaluating the trained model.
- loss, accuracy = model.evaluate(X, y, verbose=0)
- Make Predictions
- Make predictions on new data
- predictions = model.predict(X)


### References:
Expand Down

0 comments on commit 9353c95

Please sign in to comment.