update samples from Release-70 as a part of SDK release

This commit is contained in:
amlrelsa-ms
2020-10-13 05:19:49 +00:00
parent aae823ecd8
commit 5775f8a78f
56 changed files with 1872 additions and 1642 deletions

View File

@@ -100,7 +100,7 @@
"\n",
"# Check core SDK version number\n",
"\n",
"print(\"This notebook was created using SDK version 1.15.0, you are currently running version\", azureml.core.VERSION)"
"print(\"This notebook was created using SDK version 1.16.0, you are currently running version\", azureml.core.VERSION)"
]
},
{
@@ -378,7 +378,13 @@
"metadata": {},
"outputs": [],
"source": [
"file_name = 'logging-api/myfile.txt'\n",
"import os\n",
"directory = 'logging-api'\n",
"\n",
"if not os.path.exists(directory):\n",
" os.mkdir(directory)\n",
"\n",
"file_name = os.path.join(directory, \"myfile.txt\")\n",
"\n",
"with open(file_name, \"w\") as f:\n",
" f.write('This is an output file that will be uploaded.\\n')\n",