Skip to content

Commit

Permalink
Changed REadme.md for predict,and test fn
Browse files Browse the repository at this point in the history
  • Loading branch information
sharnam19 committed Oct 18, 2017
1 parent a443bf8 commit c120848
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,12 @@ batch_params={'mode':'train'/'test','momentum':0.9,'eps':1e-8})</pre>

### To Load Model
<pre>model = network.load("model.json")</pre>

### To Train Model
<pre>model.train(X,y)</pre>

### To Get Accuracy & Loss After Training
<pre>accuracy,loss = model.test(validX,validY)</pre>

### To Predict
<pre>predictions = model.predict(X)</pre>

0 comments on commit c120848

Please sign in to comment.