Update 'train.py'

This commit is contained in:
Patryk Gałka 2023-05-11 21:40:37 +02:00
parent 65b73dc86f
commit 264eb4fe56

View File

@ -18,9 +18,10 @@ def my_config():
@exint.main
def my_main(EPOCHS, _run):
_run.info["epochs"] = EPOCHS
_run.info["epochs"] = EPOCHS,
normalize = layers.Normalization()
train_data_x = exint.open_resource('./X_train.csv', 'r')
train_data_x = pandas.open_csv('./X_train.csv')
_run.info["dataset"] = train_data_x
games_all = train_data_x.copy()
games_predict = train_data_x.pop('User_Score')
normalize.adapt(games_all)