Skip to content

Commit aa9d29c

Browse files
committed
moving expt out
1 parent ad1227c commit aa9d29c

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

lab1/solutions/Part1_TensorFlow_Solution.ipynb

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"First, sign up for a Comet account [at this link](https://www.comet.com/signup?utm_source=mit_dl&utm_medium=partner&utm_content=github\n",
8989
") (you can use your Google or Github account). Running this cell will prompt you to enter your API Key, which you can find either in the first 'Get Started with Comet' page or by pressing the '?' in the top right corner and then 'Quickstart Guide' -- it is on the right hand side of the page.\n",
9090
"\n",
91-
"After entering your API key, you will find a unique link taking you to a project page for this project -- which we have named `6.s191_lab1_part1`. Note that you can find your active projects under your home `projects` tab in the Comet web interface."
91+
"After entering your API key, you will find a unique link taking you to a project page for this project (i.e., part of the lab) -- which we have named `6.s191_lab1_part1`. Note that you can find your active projects under your home `projects` tab in the Comet web interface."
9292
]
9393
},
9494
{
@@ -101,10 +101,29 @@
101101
"source": [
102102
"%pip install comet_ml\n",
103103
"import comet_ml\n",
104-
"comet_ml.init(project_name=\"6.s191_lab1_part1\")\n",
105-
"comet_experiment = comet_ml.Experiment()"
104+
"comet_ml.init(project_name=\"6.s191_lab1_part1\")"
106105
]
107106
},
107+
{
108+
"cell_type": "markdown",
109+
"source": [
110+
"The core unit of Comet is the [`Experiment`](https://www.comet.com/docs/v2/api-and-sdk/python-sdk/experiment-overview/#experiment), which logs and represents information from a single execution of code -- such as a single run of this notebook, with a single set of hyperparameters. We initiate the experiment here:"
111+
],
112+
"metadata": {
113+
"id": "Ztpy8Ndf5buR"
114+
}
115+
},
116+
{
117+
"cell_type": "code",
118+
"source": [
119+
"comet_experiment = comet_ml.Experiment()"
120+
],
121+
"metadata": {
122+
"id": "H2n3qs6j5eKh"
123+
},
124+
"execution_count": null,
125+
"outputs": []
126+
},
108127
{
109128
"cell_type": "markdown",
110129
"metadata": {

0 commit comments

Comments
 (0)