Skip to content

Commit 988a8e7

Browse files
committed
initial draft of part 1
1 parent 831ec78 commit 988a8e7

File tree

2 files changed

+734
-2
lines changed

2 files changed

+734
-2
lines changed

0 - Intro & Setup.ipynb

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:ecffde91d7d9cdabed666a66cf5c1ef5e07bba4c4e14f0b9d4f6742ec575cc8e"
4+
"signature": "sha256:d47ab3bdbb8947837ed647f17839e988544b737b9660a40130ff49b8b17c1d91"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -39,7 +39,7 @@
3939
"cell_type": "markdown",
4040
"metadata": {},
4141
"source": [
42-
"Check all dependencies are installed correctly (see the [README](https://github.com/piskvorky/topic_modeling_tutorial/)) (highlight each cell with your mouse and press SHIFT+ENTER):"
42+
"Check all dependencies are installed correctly (see the [README](https://github.com/piskvorky/topic_modeling_tutorial/)) (highlight each cell with your mouse and press `SHIFT`+`ENTER`):"
4343
]
4444
},
4545
{
@@ -461,6 +461,23 @@
461461
"\n",
462462
"A common pattern that we'll be using is **combining the efficiency of in-memory arrays** (numpy, scipy.sparse) with the **scalability of data streaming**. Instead of processing one document at a time (slow), or all documents at once (non-scalable), we'll be reading **a chunk of documents** into RAM (= as many documents as RAM allows), processing this chunk, then throwing it away and streaming a new chunk into RAM."
463463
]
464+
},
465+
{
466+
"cell_type": "heading",
467+
"level": 2,
468+
"metadata": {},
469+
"source": [
470+
"Notebooks"
471+
]
472+
},
473+
{
474+
"cell_type": "markdown",
475+
"metadata": {},
476+
"source": [
477+
"At any point, you can save the notebook (any notebook) to disk by pressing `CTRL`+`s` or `CMD`+`s`. This will **save all your changes**, including cell outputs.\n",
478+
"\n",
479+
"To discard your notebook changes, simply checkout the file again from git (or extract it again from the repository ZIP archive). This will reset the notebook to its original state, **losing all changes**."
480+
]
464481
}
465482
],
466483
"metadata": {}

0 commit comments

Comments
 (0)