Download the best trained model artifact
autoscientist.download(strexperiment_id) -> BinaryResponseContent
GET/api/v1/autoscientist/{experiment_id}/download
Download the best trained model artifact
import os
from adaption import Adaption
client = Adaption(
api_key=os.environ.get("ADAPTION_API_KEY"), # This is the default and can be omitted
)
response = client.autoscientist.download(
"experiment_id",
)
print(response)
content = response.read()
print(content)