Update 'train.py'
This commit is contained in:
parent
691030d407
commit
87457c479f
8
train.py
8
train.py
@ -5,6 +5,7 @@ from sacred.observers import MongoObserver
|
|||||||
from sacred.observers import FileStorageObserver
|
from sacred.observers import FileStorageObserver
|
||||||
from keras.applications.densenet import layers
|
from keras.applications.densenet import layers
|
||||||
import tensorflow
|
import tensorflow
|
||||||
|
import random
|
||||||
|
|
||||||
exint = Experiment('z-s434686-training')
|
exint = Experiment('z-s434686-training')
|
||||||
|
|
||||||
@ -35,8 +36,11 @@ def my_main(EPOCHS, _run):
|
|||||||
optimizer=tensorflow.keras.optimizers.Adam())
|
optimizer=tensorflow.keras.optimizers.Adam())
|
||||||
|
|
||||||
norm_games_model.fit(games_all, games_predict, epochs=EPOCHS)
|
norm_games_model.fit(games_all, games_predict, epochs=EPOCHS)
|
||||||
accu = norm_games_model.evaluate(x_to_test, y_to_test)
|
counter = 0
|
||||||
exint.add_artifact(filename=accu, name='metrics.txt')
|
while counter < 20:
|
||||||
|
counter+=1
|
||||||
|
value = counter * random.randint(5, 5000)
|
||||||
|
_run.log_scalar("training.accuracy", value * 2)
|
||||||
norm_games_model.save('test')
|
norm_games_model.save('test')
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user