Complete the code to initialize a new DVC project in your current directory.
dvc [1]The dvc init command initializes a new DVC project by creating necessary files and folders.
Complete the code to add a data file named 'data.csv' to DVC tracking.
dvc [1] data.csvThe dvc add command tells DVC to track the specified data file or directory.
Fix the error in the command to push data to remote storage using DVC.
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 'train.py' and saves output to 'model.pkl'.
dvc run -n train_model -d train.py -o [1] python [2]
The -o option specifies the output file model.pkl, and the command runs python train.py.
Fill all three blanks to create a DVC pipeline stage that depends on 'prepare.py' and 'data.csv', outputs 'features.csv', and runs 'prepare.py'.
dvc run -n prepare_data -d [1] -d [2] -o [3] python prepare.py
The stage depends on the script prepare.py and data data.csv, outputs features.csv, and runs the script.