allow to pull data outside dvc project #8460
link89
started this conversation in
New Features & Ideas
Replies: 1 comment 12 replies
-
Have you taken a look at |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am on a task on setup a CI job for a tensorflow task that need to start a tensorflow job on a HPC cluster from the CI node. In order to do this I need to send data to the HPC control node first.
In order to reduce uneccessary IO and network usage, I hope that I can just send the *.dvc file to the remote node first, and then run
dvc pull
command to fetch data to the remote node directly, instead of pulling data on the CI node and scp to the remote node.Currently I have to run
git init
anddvc init
before I can rundvc pull
, it would be greate if dvc could provide a sub command that allow me to do it directly.Beta Was this translation helpful? Give feedback.
All reactions