Use dvc to track my data generation pipeline #10456
-
|
Hi, I have since used I have seen the discussion here however i don't quite understand the rationale behind why dvc not allowing for explicit tracking of the output of a stage similar to data tracking? Secondly is there any implication to my forcibly doing |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @ZuoyunZheng! If the generated data is part of the |
Beta Was this translation helpful? Give feedback.
Hi @ZuoyunZheng! If the generated data is part of the
outs:of your stage indvc.yaml, it's already being tracked. You can see that by examiningdvc.lock. It's just that dvc tracks these stage outputs slightly differently, tracking them whenever you dodvc reproordvc exp runand saving the info indvc.lockinstead of.dvcfiles. You should not need to dodvc addordvc commit.