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
Currently, our model train scripts run into an error if executed from scratch.
Reason: Line 74 in utils/loading.py silently assumes the file ann_{test,train,val}.csv to be present on the disk and fails if it is not found. The file would only be present, if the user manually triggers utils/rain_test_val_split.py in advance.
Desired state
The function load_extended_posts() automatically triggers train_test_val_split.py if the required csv files are not found. Hence, a user can run the model training from scratch.
The text was updated successfully, but these errors were encountered:
Current state
Currently, our model train scripts run into an error if executed from scratch.
Reason: Line 74 in utils/loading.py silently assumes the file
ann_{test,train,val}.csv
to be present on the disk and fails if it is not found. The file would only be present, if the user manually triggers utils/rain_test_val_split.py in advance.Desired state
The function
load_extended_posts()
automatically triggerstrain_test_val_split.py
if the required csv files are not found. Hence, a user can run the model training from scratch.The text was updated successfully, but these errors were encountered: