I’m trying to run the training stage of a machine learning pipeline on dvc with the following command(s):
dvc run -n train \
-d data/census_clean.csv -d starter/train_model.py \
-o model/model.joblib -o model/encoder.joblib -o model/lb.joblib \
python starter/train_model.py
But this throws up the following error everytime and the run fails to start.
I’m not sure where the mistake on my part is - the same error repeats if I try to run without the output commands, and not specifying the params since hyerparameter tuning is not required at this stage. Please let me know what I’m missing.
Thanks