From 392faa30f85a965a85266c412537ce50da0b399a Mon Sep 17 00:00:00 2001 From: Michael Warner Date: Tue, 27 Jun 2023 10:26:01 -0400 Subject: [PATCH] changed extras to extra_files --- advanced/upload.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/upload.rst b/advanced/upload.rst index 96fd59e..5da1990 100644 --- a/advanced/upload.rst +++ b/advanced/upload.rst @@ -41,7 +41,7 @@ For example, you might want to upload a classifier **and** the predictions it ma file_path = "predictions.csv" numpy.savetxt(file_path, predictions, delimiter=",") - modelstore.upload("my-domain", model=model, extras=file_path) + modelstore.upload("my-domain", model=model, extra_files=file_path) When you load these models, the extra files are not loaded into memory: