You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The README file incorrectly specifies the command to run the experiments. It states: python main.py --train True --evaluate True --dataset <name of csv file> --output_dir <path to output directory> --n_route <number of nodes> --window_size <length of sliding window> --horizon <predict horizon> --norm_method z_score --train_length 7 --validate_length 2 --test_length 1
However, the main.py file does not support the following arguments:
--output_dir
--n_route
--validate_length (should be --valid_length)
Suggested Fix: Update the README file to reflect the correct command format, ensuring clarity for users. The corrected command should be: python main.py --train True --evaluate True --dataset <name of csv file without .csv> --valid_length 2 --window_size <length of sliding window> --horizon <predict horizon> --norm_method z_score --train_length 7 --test_length 1
Additional Context:
The text was updated successfully, but these errors were encountered:
The README file incorrectly specifies the command to run the experiments. It states:
python main.py --train True --evaluate True --dataset <name of csv file> --output_dir <path to output directory> --n_route <number of nodes> --window_size <length of sliding window> --horizon <predict horizon> --norm_method z_score --train_length 7 --validate_length 2 --test_length 1
However, the main.py file does not support the following arguments:
--output_dir
--n_route
--validate_length (should be --valid_length)
Suggested Fix: Update the README file to reflect the correct command format, ensuring clarity for users. The corrected command should be:
python main.py --train True --evaluate True --dataset <name of csv file without .csv> --valid_length 2 --window_size <length of sliding window> --horizon <predict horizon> --norm_method z_score --train_length 7 --test_length 1
Additional Context:

The text was updated successfully, but these errors were encountered: