-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fixes #76: Enhance Data Storage: Including Model Details in the result.json file #77
Conversation
MaxenceGui
commented
Apr 15, 2024
- Add the models key to the result store in the blob storage
@@ -455,6 +458,7 @@ async def test(): | |||
m = Model( | |||
request_function["test"], | |||
"test_model1", | |||
1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is it hardcoded to 1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Model() took different data and in third position, they took the version of the model. Here, since I'm building a test model for the testing, I set the version of the test model to 1.
In the test refactor issue (#59) we should probably delete this endpoint and build the test models in the test files directly.