Skip to content

Commit

Permalink
chnages in threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
somasundaram1702 committed Aug 17, 2020
1 parent 7f0a499 commit 308a20d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train_evm.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ def check_accuracy(self):

def save_model(self):

with open('EVM_model.pkl','wb') as f:
with open('./outputs/EVM_model.pkl','wb') as f:
pickle.dump(self.mevm,f)

with open('class_names.pkl','wb') as t:
with open('./outputs/class_names.pkl','wb') as t:
pickle.dump(self.uni_classes,t)

if __name__ == '__main__':
Expand Down

0 comments on commit 308a20d

Please sign in to comment.