├── LICENSE ├── README.md └── notebooks ├── conference_notebooks ├── advanced_text_analysis.ipynb ├── modern_nlp_in_python.ipynb ├── pycon_nlp │ ├── 00_spacy_intro.ipynb │ ├── 01_pride_and_predjudice.ipynb │ ├── 02_rand_dataset.ipynb │ ├── data │ │ ├── article.txt │ │ ├── pride_and_prejudice.txt │ │ └── rand-terrorism-dataset.txt │ └── images │ │ ├── displacy_title.png │ │ ├── example_output.png │ │ ├── example_output_full.png │ │ └── syntax-dependencies-oliver.png └── pydays │ └── topic_modelling.ipynb └── lightning_tour.ipynb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/conference_notebooks/advanced_text_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/advanced_text_analysis.ipynb -------------------------------------------------------------------------------- /notebooks/conference_notebooks/modern_nlp_in_python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/modern_nlp_in_python.ipynb -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/00_spacy_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/00_spacy_intro.ipynb -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/01_pride_and_predjudice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/01_pride_and_predjudice.ipynb -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/02_rand_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/02_rand_dataset.ipynb -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/data/article.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/data/article.txt -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/data/pride_and_prejudice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/data/pride_and_prejudice.txt -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/data/rand-terrorism-dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/data/rand-terrorism-dataset.txt -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/images/displacy_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/images/displacy_title.png -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/images/example_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/images/example_output.png -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/images/example_output_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/images/example_output_full.png -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pycon_nlp/images/syntax-dependencies-oliver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pycon_nlp/images/syntax-dependencies-oliver.png -------------------------------------------------------------------------------- /notebooks/conference_notebooks/pydays/topic_modelling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/conference_notebooks/pydays/topic_modelling.ipynb -------------------------------------------------------------------------------- /notebooks/lightning_tour.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/explosion/spacy-notebooks/HEAD/notebooks/lightning_tour.ipynb --------------------------------------------------------------------------------