i using tflearn alexnet sample own dataset.
next want perform classification on test data , determine accuracy of model.
- tflearn api provides methods
model.predict(),model.evaluate(). model.predict()gives prediction result each image in test data set. how can use result accuracy?model.evaluate()gives accuracy score on test data. there way accuracy each batch well?
below responses:
- you can calculate accuracy comparing predicted classes against effective ones when using
model.predict() - no, aware of. not sure useful use case either: interested on overall accuracy dataset/partition evaluating.
Comments
Post a Comment