Reputation
Badges 1
2 × Eureka!@<1523701087100473344:profile|SuccessfulKoala55> Thanks for your response.
Currently we are targeting the APICLIENT for creating a model and adding scalar value.
from clearml.backend_api.session.client import APIClient
client = APIClient()
model_instance = client.models.create(name="sample_model",project="model_id",uri="sample_url")
The above code will create and return the model id.
It would be helpful if we can get a sample documentation or sample code snippet how we can use ...
Hi @<1523701435869433856:profile|SmugDolphin23> Thanks for response.
As shared above i am initializing the chunk_size = 10 (i.e. 10MB)
dataset.upload(show_progress=True,chunk_size=10)
Uploading 2 files :
file1.npz -> 1.63 MB
file2.npz -> 315.01 MB
In logs i get below.File compression and upload completed: total size 316.64 MiB, 2 chunk(s) stored (average size 158.32 MiB)
Now as per the explanation the chunk size is set to 10MB
First chunk will fill upto 10MB (file1.npz is 1.63...