Complete the code to initialize a new DVC project in the current directory.
dvc [1]The dvc init command initializes DVC in your project folder by creating necessary configuration files.
Complete the code to add a dataset file named 'data.csv' to DVC tracking.
dvc [1] data.csvThe dvc add command tells DVC to track the specified file or directory.
Fix the error in the command to push tracked data to remote storage.
dvc [1]The correct command to upload tracked data files to remote storage is dvc push.
Fill both blanks to create a DVC pipeline stage that runs 'python train.py' and tracks 'data.csv' as input.
dvc run -n train_model -d [1] -o model.pkl [2]
The -d flag specifies the dependency file data.csv, and the last argument is the command to run the training script.
Fill all three blanks to create a DVC stage that takes 'data.csv' as input, runs 'python preprocess.py', and outputs 'clean_data.csv'.
dvc run -n preprocess_data -d [1] -o [2] [3]
The -d flag is for the input file data.csv, -o for the output clean_data.csv, and the command runs the preprocessing script.