Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 35 additions & 7 deletions notebooks/week-1/week 1 - VM test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,42 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"hello world\n"
]
}
],
"source": [
"print \"hello world\""
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"keras successfully imported\n",
"theano successfully imported\n",
"tensorflow successfully imported\n",
"sklearn successfully imported\n",
"seaborn successfully imported\n"
]
}
],
"source": [
"import keras\n",
"print \"keras successfully imported\"\n",
Expand All @@ -42,13 +62,21 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"uni: qh2169\n"
]
}
],
"source": [
"print \"uni:\", \"fill in your uni here\""
"print \"uni:\", \"qh2169\""
]
}
],
Expand Down
Loading