Skip to content

Commit

Permalink
Update core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
IamVNIE committed Mar 27, 2020
1 parent 2fb71bb commit 89acdd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easyai/chief/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def load_model_and_weights(modelName, summary = False):
model.load_weights(modelName+'_wgts.h5')
return model

def modelManager(modelName,x_train, OUTPUT_CLASSES, RETRAIN_MODEL, AI_NAME= 'tinyMedNet'):
def modelManager(modelName,x_train, OUTPUT_CLASSES, RETRAIN_MODEL, AI_NAME= 'tinyNet'):
if RETRAIN_MODEL== True:
if check_model_exists(modelName):
model = load_model_and_weights(modelName = modelName)
Expand Down

0 comments on commit 89acdd7

Please sign in to comment.