diff options
| author | tslil <tslil@posteo.de> | 2021-01-12 16:48:41 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 3d1e8f16ac53aad322f2c681f5f3c25918c58602 (patch) | |
| tree | adb2819f03b34cf119e96d974ee5ae1cec877e06 /src/train5.py | |
| parent | 4b4c3853c8ed0dab49e535db3dfd2a49a7dfea08 (diff) | |
Generate the correct format directly
Diffstat (limited to 'src/train5.py')
| -rw-r--r-- | src/train5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/train5.py b/src/train5.py index 214ad88..adb81a5 100644 --- a/src/train5.py +++ b/src/train5.py @@ -69,7 +69,7 @@ def load_data(size): training_outcome = training_data.iloc[:, -1:] val_fn = "validation-"+str(size)+".csv" - val_data = pd.read_csv(val_fn).tail(20000) + val_data = pd.read_csv(val_fn) #.tail(20000) val_stack_input = np.array(val_data.iloc[:, 2:-1]).reshape(shape, order='F') val_flats_input = np.array(val_data.iloc[:, 0:2]) val_input = [val_stack_input, val_flats_input] |
