├── transcript.today ├── imgs ├── avn.jpg ├── c1.png ├── c2.png ├── ws1.png ├── ws2.png ├── viclone.png └── melbdjango.png ├── transcript.july ├── requeriments-full.txt └── README.md /transcript.today: -------------------------------------------------------------------------------- 1 | (lp0 2 | . -------------------------------------------------------------------------------- /imgs/avn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/avn.jpg -------------------------------------------------------------------------------- /imgs/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/c1.png -------------------------------------------------------------------------------- /imgs/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/c2.png -------------------------------------------------------------------------------- /imgs/ws1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/ws1.png -------------------------------------------------------------------------------- /imgs/ws2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/ws2.png -------------------------------------------------------------------------------- /imgs/viclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/viclone.png -------------------------------------------------------------------------------- /transcript.july: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/transcript.july -------------------------------------------------------------------------------- /imgs/melbdjango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchux/ipython-notebook-nltk/HEAD/imgs/melbdjango.png -------------------------------------------------------------------------------- /requeriments-full.txt: -------------------------------------------------------------------------------- 1 | Jinja2==2.7 2 | MarkupSafe==0.18 3 | PyYAML==3.10 4 | camplight==0.9.5 5 | ipython==0.13.2 6 | matplotlib==1.3.0 7 | networkx==1.8 8 | nltk==2.0.4 9 | nose==1.3.0 10 | numpy==1.7.1 11 | pandas==0.12.0 12 | pyparsing==2.0.1 13 | pytagcloud==0.3.5 14 | python-dateutil==2.1 15 | pytz==2013b 16 | pyzmq==13.1.0 17 | requests==1.2.3 18 | scipy==0.12.0 19 | six==1.3.0 20 | tornado==3.1 21 | wsgiref==0.1.2 22 | xmltodict==0.5.1 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ipython-notebook-nltk 2 | ===================== 3 | 4 | An introduction to NLTK with python. 5 | 6 | ### RUN THE NOTEBOOK AND SEE PREVIEW IN GITHUB: 7 | - [Render Notebook](https://github.com/luchux/ipython-notebook-nltk/blob/master/NLP%20-%20MelbDjango.ipynb) 8 | 9 | ### RUN IT LOCALLY WITH THE ENV AND LIBS NEEDED 10 | - Clone the repo. 11 | - Create a virtual environment and install the requeriments (You can clean them a bit if not using some of the libs). 12 | - run > ipython notebook in the root directory, and enjoy the notebook. 13 | 14 | 15 | Feel free to change, test, play with NLTK datasets in this notebook. 16 | 17 | SOURCES... 18 | Many of the exercies and content is stuff I learned and used from: 19 | - http://nltk.org/book/ 20 | - [Natural Language Processing with Python] http://shop.oreilly.com/product/9780596516499.do 21 | 22 | 23 | MIT License 24 | 25 | Copyright (c) 2009 - Luciano M. Guasco (luchux) 26 | 27 | Permission is hereby granted, free of charge, to any person obtaining a copy 28 | of this software and associated documentation files (the "Software"), to deal 29 | in the Software without restriction, including without limitation the rights 30 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 31 | copies of the Software, and to permit persons to whom the Software is 32 | furnished to do so, subject to the following conditions: 33 | 34 | The above copyright notice and this permission notice shall be included in all 35 | copies or substantial portions of the Software. 36 | 37 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 38 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 39 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 40 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 41 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 42 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 43 | SOFTWARE. 44 | --------------------------------------------------------------------------------