-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dvc add for remote repository (model registry) - GTO #9215
Comments
Hi @fortminors, are the new artifacts updated versions of old artifacts in the repo, or are they completely new artifacts? Are they related to the other artifacts in the repo? Do you actually want them to be part of the existing repo, or are you only really interested in them being part of the model registry? |
Hello! @dberenbaum The new artifacts are the updated version of the previous ones, as in I am retraining the model and pushing it. I also add a timestamp, so in the sense of naming, these are new files. |
Do you have separate repos for model training and model registry? If so, do you mind if I ask why? @aguschin I think we have some related discussions about how to "publish" artifacts, right? |
Yes, this is correct. Basically, for every model I have, I made a separate repository to encapsulate the logic inside (ie train, test, export, etc). Then at the final step for each model, I upload it to model registry, which acts as a storage and quick access place for the end user (ie dvc get from model registry). |
Yep, we discussed this in iterative/gto#307 (and earlier) with @francesco086 |
Thanks! Looking forward to it. |
Hello! It would be quite useful if it was possible to track new artifacts through dvc remotely.
What I mean is the following situation:
$
gto show
:cd path/to/other/dir
(or even on another machine)Most of the methods in GTO have the optional flag:
-r <text>, --repo <text> - Local or remote repository [default: .]
, which is quite handy.It would be super useful to make a similar flag for DVC methods (at least for
add
).Right now to accomplish this task, I have to do the following:
new_model_det.pt
, to the cloned repositorydvc add
,gto annotate
,dvc push
andgit push
The text was updated successfully, but these errors were encountered: