-
Notifications
You must be signed in to change notification settings - Fork 35
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
Document if clearml is a full model store or only model management #480
Comments
@Make42 ClearML is built in a modular fashion (nicely illustrated here) for maximum flexibility: the backend databases logs artifact/model references to let users use whichever storage solution (or combination of which) fits best their use case. You can make use of ClearML's built-in file-server by setting the global default_output_uri parameter or specifically through the SDK interfaces for specifying output (e.g. output_uri in Task.init). |
@ainoam: Thank you for your reply, but I am not sure this answers my question: I am using the ClearML Hosted Service. The page https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server/#what-is-clearml-server_ says
but the page does not clarify unambiguously, whether only metadata of the models is stored on the ClearML Server or the models themselves are also stored. You write
which sounds like only the metadata/references etc. to models/artifacts etc. is saved, not the artifacts and models themselves. However, by experimenting, I found out that I am able to upload an artifact and get it back itself, not just its metadata/reference. On the other hand, so far, I have not been able to do the same for a model. PS: I suspect you mean |
Ok, so basically, I had to set Ironically, John C. also said at the beginning of that slack thread
but I did not understand this, because I would never have thought that All of this, this should be mentioned also at places where it is about about the external or non-external storage. Also it should be mentioned everywhere we talk about models or artifacts or others. By mentioning I do not mean details, but one sentence and a link to the detailed documentation. The documentation of
but I do not see any mentioning that this would be internal file storage of the ClearML Hosted Server if I use the ClearML Hosted Server. Similarly, this is not mentioned at https://clear.ml/docs/latest/docs/getting_started/ds/ds_second_steps/#models. |
After more playing around, it seems that ClearML Server does not store models or artifacts itself. These are stored somewhere else (e.g., AWS S3-bucket) or on my local machine and ClearML Server is only storing configuration parameters and previews (e.g., when the artifact is a pandas DataFrame). Is that right? Is there a way to save the models completely on the ClearML server?
The text was updated successfully, but these errors were encountered: