Link dvc data folder to dvc algorithm folder #8586
-
Hi, I have a repo that contains all my algorithm stuff (scripts, .cfg files, etc but NO data) on the other hand I got a different DVC repo that contains only data (images, annotations files). I'm wondering how I can link those two folders to prevent copying my data into the algorithm (I check over the soft-link funcion but still not sure if I can ). If yes, can you give me some example?... thanks |
Beta Was this translation helpful? Give feedback.
Answered by
shcheklein
Nov 19, 2022
Replies: 1 comment 7 replies
-
Hey, one way that comes to my mind:
I hope that makes sense. Let us know if something is not working. |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
shcheklein
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, one way that comes to my mind:
dvc import
in the second (algorithm) repo to get data from the first one. See this scenario: https://dvc.org/doc/use-cases/data-registry/tutorialI hope that makes sense. Let us know if something is not working.