Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

README.md 767 B

You have to be logged in to leave a comment. Sign In

DVC_example

DVC example for Data Science in Context DATA 607

Make some data

python gen_data -d <n_datapoints> -c <c1,c2,c3,c4> (c1-c4 are coefficients that the linear regressor should find)

Example use cases

git checkout <branch> data.csv.dvc (checkout the dvc pointer from a specific branch/point in time)dvc checkout (dvc sees the pointer has changed, pulls in the right version of data.csv from the dvc cache)dvc repro run/check_coeffs.dvc (dvc reproduces the pipeline up to the stage specified.)

If you need to alter stages of the pipeline

Here you define the stages, their dependencies, and their outputs

See dvc documentation for more info

make changes to run/<stage-definition-file>.sh filesbash run/<stage-definition-file>.sh

Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...