assure that epochs is saved
s444354-training/pipeline/head There was a failure building this commit Details

This commit is contained in:
Adrian Charkiewicz 2022-05-07 21:45:27 +02:00
parent 718378d69a
commit 2a5e48f63c
1 changed files with 3 additions and 2 deletions

View File

@ -38,7 +38,7 @@ except:
@ex.config
def my_config():
epochs = numberOfEpochParam
my_config()
dataframe_raw = pd.read_csv("winequality-red.csv")
@ -216,6 +216,7 @@ with open("result.txt", "w+") as file:
@ex.main
def main():
lr = 1e-6
my_config()
history5 = fit(epochs, lr, model, train_loader, val_loader)
ex.run()