mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-19 17:17:04 -05:00
update samples from Release-70 as a part of SDK release
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user