fix storage setup

This commit is contained in:
Cyberes 2022-09-16 13:12:14 -06:00 committed by GitHub
parent 6f9fee815e
commit 82f63e7cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -39,11 +39,11 @@
"source": [ "source": [
"**Where to store the models**\n", "**Where to store the models**\n",
"\n", "\n",
"`/storage/models/` is for the free tier.\n", "`/storage/` is persistent storage shared across all machines on your account.\n",
"\n", "\n",
"`/notebooks/models/` is for the pro tier.\n", "`/notebooks/` is storage for this notebook only.\n",
"\n", "\n",
"_You must run the block below or else the variable won't be accessable in the notebook._" "We're going to store models in `/storage/models`."
] ]
}, },
{ {
@ -57,7 +57,8 @@
"# ===============================================================\n", "# ===============================================================\n",
"# Save the variable to Jupiter's temp storage to access it when the kernel restarts.\n", "# Save the variable to Jupiter's temp storage to access it when the kernel restarts.\n",
"# To reset your storage directory, rerun this cell.\n", "# To reset your storage directory, rerun this cell.\n",
"%store model_storage_dir" "%store model_storage_dir\n",
"!mkdir -p $model_storage_dir"
] ]
}, },
{ {