Complete the code to initialize a new DVC project in the 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.
dvc [1] originThe dvc push command uploads tracked data files to the remote storage named 'origin'.
Fill both blanks to create a DVC pipeline stage named 'train' that runs 'python train.py'.
dvc run --name [1] -- [2] train.py
The dvc run command creates a pipeline stage. The --name option names the stage, and the command after -- is the script to run.
Fill all three blanks to create a DVC pipeline stage named 'evaluate' that runs 'python eval.py' and depends on 'model.pkl'.
dvc run --name [1] --deps [2] -- [3] eval.py
This command creates a pipeline stage named 'evaluate' that depends on the file 'model.pkl' and runs the script 'eval.py' using Python.