Skip to content

Commit

Permalink
chore: removed code blocks for training
Browse files Browse the repository at this point in the history
  • Loading branch information
lbarbMITRE committed Sep 15, 2023
1 parent eb51eed commit 8471914
Showing 1 changed file with 0 additions and 46 deletions.
46 changes: 0 additions & 46 deletions examples/tensorflow-mnist-classifier/demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -260,29 +260,6 @@
"```"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Submit training job for the shallow network architecture\n",
"response_shallow_train = restapi_client.submit_job(\n",
" workflows_file=WORKFLOWS_TAR_GZ,\n",
" experiment_name=EXPERIMENT_NAME,\n",
" entry_point=\"train\",\n",
" entry_point_kwargs=\" \".join([\n",
" \"-P model_architecture=shallow_net\",\n",
" \"-P epochs=30\",\n",
" \"-P register_model_name=mnist_shallow_net\",\n",
" ]),\n",
")\n",
"\n",
"print(\"Training job for shallow neural network submitted\")\n",
"print(\"\")\n",
"pprint.pprint(response_shallow_train)"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand All @@ -306,29 +283,6 @@
"```"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Submit training job for the LeNet-5 network architecture\n",
"response_le_net_train = restapi_client.submit_job(\n",
" workflows_file=WORKFLOWS_TAR_GZ,\n",
" experiment_name=EXPERIMENT_NAME,\n",
" entry_point=\"train\",\n",
" entry_point_kwargs=\" \".join([\n",
" \"-P model_architecture=le_net\",\n",
" \"-P epochs=30\",\n",
" \"-P register_model_name=mnist_le_net\",\n",
" ]),\n",
")\n",
"\n",
"print(\"Training job for LeNet-5 neural network submitted\")\n",
"print(\"\")\n",
"pprint.pprint(response_le_net_train)"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down

0 comments on commit 8471914

Please sign in to comment.