Machine Learning के लिए CI/CD
Ravi Bhadauria
Machine Learning Engineer

pip install dvc
git init-> dvc init
Initialized DVC repository.
You can now commit the changes to git.
.dvc
|- .gitignore
|- config
|- tmp
dvc add <file> कमांड से डेटा फाइलें जोड़ें-> dvc add data.csv
.dvc placeholders बनते हैं जिनमें फाइल मेटाडेटा होता है.dvc फाइल होती है (data.csv -> data.csv.dvc).dvc/cache में DVC cache बनता है-> cat data.csv
This is a sample data file.
data.csv.dvc फाइल-> cat data.csv.dvc outs: - md5: ea9972ac9f8fa321ea74969e93acc196size: 28hash: md5path: data.csv
dvc init से DVC शुरू करें, dvc add <file> से फाइलें जोड़ें.dvc फाइलें मेटाडेटा रखती हैं, Git वर्ज़न ट्रैक करता हैMachine Learning के लिए CI/CD