Skip to content

Commit ea4588a

Browse files
Algorithmia update
1 parent f50d65d commit ea4588a

File tree

2 files changed

+35
-23
lines changed

2 files changed

+35
-23
lines changed

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -233,18 +233,6 @@ IPython Notebook(s) demonstrating Hadoop MapReduce with mrjob functionality.
233233

234234
<br/>
235235

236-
<p align="center">
237-
<img src="https://raw.githubusercontent.com/donnemartin/data-science-ipython-notebooks/master/images/algorithmia.png">
238-
</p>
239-
240-
## algorithmia
241-
242-
IPython Notebook(s) demonstrating using Machine Learning, Computer Vision and NLP algorithms.
243-
244-
| Notebook | Description |
245-
|------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
246-
| [Simple Usage](http://nbviewer.ipython.org/github/donnemartin/data-science-ipython-notebooks/blob/master/algorithmia/Algorithmia.ipynb) | Algorithmia is a marketplace for algorithms. This notebook showcases 4 different algorithms: Face Detection, Content Summarizer, Latent Dirichlet Allocation and Optical Character Recognition. |
247-
248236
<p align="center">
249237
<img src="https://raw.githubusercontent.com/donnemartin/data-science-ipython-notebooks/master/images/aws.png">
250238
</p>
@@ -295,6 +283,7 @@ IPython Notebook(s) demonstrating miscellaneous functionality.
295283
| Notebook | Description |
296284
|--------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
297285
| [regex](http://nbviewer.ipython.org/github/donnemartin/data-science-ipython-notebooks/blob/master/misc/regex.ipynb) | Regular expression cheat sheet useful in data wrangling.|
286+
[Algorithmia Examples](http://nbviewer.ipython.org/github/donnemartin/data-science-ipython-notebooks/blob/master/algorithmia/Algorithmia.ipynb) | Algorithmia is a marketplace for algorithms. This notebook showcases 4 different algorithms: Face Detection, Content Summarizer, Latent Dirichlet Allocation and Optical Character Recognition.|
298287

299288
## notebook-installation
300289

algorithmia/Algorithmia.ipynb

Lines changed: 34 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,34 @@
1616
"Reference: [Algorithmia Documentation](http://docs.algorithmia.com/)\n",
1717
"\n",
1818
"Table of Contents:\n",
19-
"1. Authentication\n",
20-
"2. Face Detection\n",
21-
"3. Content Summarizer\n",
22-
"4. Latent Dirichlet Allocation\n",
23-
"5. Optical Character Recognition"
19+
"1. Installation\n",
20+
"2. Authentication\n",
21+
"3. Face Detection\n",
22+
"4. Content Summarizer\n",
23+
"5. Latent Dirichlet Allocation\n",
24+
"6. Optical Character Recognition"
25+
]
26+
},
27+
{
28+
"cell_type": "markdown",
29+
"metadata": {},
30+
"source": [
31+
"# 1. Installation\n",
32+
"\n",
33+
"You need to have the `algorithmia` package (version 0.9.3) installed for this notebook.\n",
34+
"\n",
35+
"You can install the package using the pip package manager:"
36+
]
37+
},
38+
{
39+
"cell_type": "code",
40+
"execution_count": null,
41+
"metadata": {
42+
"collapsed": true
43+
},
44+
"outputs": [],
45+
"source": [
46+
"pip install algorithmia==0.9.3"
2447
]
2548
},
2649
{
@@ -41,7 +64,7 @@
4164
"cell_type": "markdown",
4265
"metadata": {},
4366
"source": [
44-
"1. Authentication\n",
67+
"2. Authentication\n",
4568
"\n",
4669
"You only need your Algorithmia API Key to run the following commands."
4770
]
@@ -63,7 +86,7 @@
6386
"cell_type": "markdown",
6487
"metadata": {},
6588
"source": [
66-
"# 2. Face Detection\n",
89+
"# 3. Face Detection\n",
6790
"\n",
6891
"Uses a pretrained model to detect faces in a given image.\n",
6992
"\n",
@@ -167,7 +190,7 @@
167190
"cell_type": "markdown",
168191
"metadata": {},
169192
"source": [
170-
"# 3. Content Summarizer\n",
193+
"# 4. Content Summarizer\n",
171194
"\n",
172195
"SummarAI is an advanced content summarizer with the option of generating context-controlled summaries. It is based on award-winning patented methods related to artificial intelligence and vector space developed at Lawrence Berkeley National Laboratory."
173196
]
@@ -225,7 +248,7 @@
225248
"cell_type": "markdown",
226249
"metadata": {},
227250
"source": [
228-
"# 4. Latent Dirichlet Allocation\n",
251+
"# 5. Latent Dirichlet Allocation\n",
229252
"\n",
230253
"This algorithm takes a group of documents (anything that is made of up text), and returns a number of topics (which are made up of a number of words) most relevant to these documents.\n",
231254
"\n",
@@ -325,7 +348,7 @@
325348
"cell_type": "markdown",
326349
"metadata": {},
327350
"source": [
328-
"# 5. Optical Character Recognition\n",
351+
"# 6. Optical Character Recognition\n",
329352
"\n",
330353
"Recognize text in your images.\n",
331354
"\n",
@@ -416,7 +439,7 @@
416439
"name": "python",
417440
"nbconvert_exporter": "python",
418441
"pygments_lexer": "ipython2",
419-
"version": "2.7.10"
442+
"version": "2.7.11"
420443
}
421444
},
422445
"nbformat": 4,

0 commit comments

Comments
 (0)