how to make dependencies tracked in the dvc.yaml #8085
Unanswered
Ichiruchan
asked this question in
Help
Replies: 1 comment
-
Pipeline stage dependencies are not tracked, only outputs. What you are doing already is correct, data dependencies (that are not outputs of any other pipeline stage) should be tracked with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'am new at dvc. I am using spacy which is a nlp framework and has script to generate dvc.yaml automatically. After generating yaml file, I executed
dvc repro
to re-product my pipeline and then executeddvc push
to push data to my remote storage. And I find that only files in outs part will be pushed. But I also want to push the first dependency(the original data) to my remote storage. Right now, my solution isdvc add first_dependency
anddvc push
. Is there any way more advanced? Thank you in advance for your reply.Beta Was this translation helpful? Give feedback.
All reactions