-
Notifications
You must be signed in to change notification settings - Fork 286
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
Default repo VertaAI/modeldb.git does not responds #1564
Comments
Hi @adhikari23, could you let me know what version of git you are using (
This functionality can be used to capture your code version metadata in your own git repository, yes! Repo will be the URL for a remote repository (usually GitHub) that you are using. |
Hi @convoliution Also I tried to use my own git repo. This is the error that I get. |
Hello @adhikari23! Regarding your git version: I see that you are using Windows. Our client development has been focused on macOS/Linux, so I will work on confirming this behavior in Windows. For now, the link indeed may not be valid. As for using your own git repo, I should clarify that repo = client.set_repository("My Repository") will create a ModelDB repository called "My Repository" that you can view at To capture information about a git repository, you would use a util class: from verta.code import Notebook
code_version = Notebook()
# Notebook Version
# client/workflows/demos/census.ipynb
# 11560 bytes
# last modified: 2020-10-07 17:45:06.726000
# MD5 checksum: 57f6ab14005c1cd083f8df9cba137721
# Git Version
# commit be4f88e173ef1d1fb09dd3b7bfbc733bb9512b49
# on branch master
# in repo [email protected]:VertaAI/modeldb.git
commit.update('code', code_version)
commit.save("Capture git details") and this will automatically capture the git repository that contains the running notebook, and save the metadata to the ModelDB repository. Or you can use Finally, in regards to gerrit, I am not too familiar with that software but I expect this to work with anything that git recognizes as valid remote repositories. Please let me know if you see any issues in this regard. Thank you! |
Hi @convoliution Where should I configure my own repository so that the code version metadata can be captured in that repo instead of vertaAI/modeldb.git? |
Hello, @adhikari23!
The Python file that you use to run our client ( |
I see that this bug report is a bit old, but I think I am encountering a related issue.. When I log a GitHub repo with |
@roivant-alan-menaged This does seem potentially related indeed. A couple questions to clarify:
|
I am not passing any arguments. (When I do pass
I think maybe the Line 60 in 51bbd74
|
@roivant-alan-menaged Thank you for the info! Just a couple more asks (I'm working mainly on reproducing this situation to see if there's other places this comes up):
|
Verta version: 0.17.2
|
Thanks @roivant-alan-menaged! We'll get this patched as soon as we can. |
Cannot access the repo VertaAI/modeldb.git . I have used this code to have my metadata stored in the modelDB
repo = client.set_repository('Census Income Local')
commit = repo.get_commit(branch='master').new_branch("log-reg")
However in webpage of verta.ai, the following repo shows that 404 page not found.
when clicked on the repo , following page opens up.
Also, can I have my own repo for storing this meta data?
The text was updated successfully, but these errors were encountered: