All Projects → cytora → Pycon Nlp In 10 Lines

cytora / Pycon Nlp In 10 Lines

Repository for PyCon 2016 workshop Natural Language Processing in 10 Lines of Code

Projects that are alternatives of or similar to Pycon Nlp In 10 Lines

Malaya
Natural Language Toolkit for bahasa Malaysia, https://malaya.readthedocs.io/
Stars: ✭ 239 (-1.24%)
Mutual labels:  jupyter-notebook
The Elements Of Statistical Learning Notebooks
Jupyter notebooks for summarizing and reproducing the textbook "The Elements of Statistical Learning" 2/E by Hastie, Tibshirani, and Friedman
Stars: ✭ 241 (-0.41%)
Mutual labels:  jupyter-notebook
Deeppicar
Deep Learning Autonomous Car based on Raspberry Pi, SunFounder PiCar-V Kit, TensorFlow, and Google's EdgeTPU Co-Processor
Stars: ✭ 242 (+0%)
Mutual labels:  jupyter-notebook
Stat Nlp Book
Interactive Lecture Notes, Slides and Exercises for Statistical NLP
Stars: ✭ 240 (-0.83%)
Mutual labels:  jupyter-notebook
Udemy derinogrenmeyegiris
Udemy Derin Öğrenmeye Giriş Kursunun Uygulamaları ve Daha Fazlası
Stars: ✭ 239 (-1.24%)
Mutual labels:  jupyter-notebook
6.006 2015 Notebooks
Stars: ✭ 241 (-0.41%)
Mutual labels:  jupyter-notebook
Datascience
Data Science in Julia course for JuliaAcademy.com, taught by Huda Nassar
Stars: ✭ 239 (-1.24%)
Mutual labels:  jupyter-notebook
Tacotron pytorch
PyTorch implementation of Tacotron speech synthesis model.
Stars: ✭ 242 (+0%)
Mutual labels:  jupyter-notebook
Numerical Linear Algebra V2
Jupyter Notebooks for Computational Linear Algebra course, taught summer 2018 in USF MSDS program
Stars: ✭ 241 (-0.41%)
Mutual labels:  jupyter-notebook
Jetcam
Easy to use Python camera interface for NVIDIA Jetson
Stars: ✭ 242 (+0%)
Mutual labels:  jupyter-notebook
Tacotron2
Tacotron 2 - PyTorch implementation with faster-than-realtime inference
Stars: ✭ 3,300 (+1263.64%)
Mutual labels:  jupyter-notebook
Hands On Computer Vision With Tensorflow 2
Hands-On Computer Vision with TensorFlow 2, published by Packt
Stars: ✭ 241 (-0.41%)
Mutual labels:  jupyter-notebook
Retail Demo Store
AWS Retail Demo Store is a sample retail web application and workshop platform demonstrating how AWS infrastructure and services can be used to build compelling customer experiences for eCommerce, retail, and digital marketing use-cases
Stars: ✭ 238 (-1.65%)
Mutual labels:  jupyter-notebook
Text Classification
Machine Learning and NLP: Text Classification using python, scikit-learn and NLTK
Stars: ✭ 239 (-1.24%)
Mutual labels:  jupyter-notebook
Loss toolbox Pytorch
PyTorch Implementation of Focal Loss and Lovasz-Softmax Loss
Stars: ✭ 240 (-0.83%)
Mutual labels:  jupyter-notebook
Deepreplay
Deep Replay - Generate visualizations as in my "Hyper-parameters in Action!" series!
Stars: ✭ 240 (-0.83%)
Mutual labels:  jupyter-notebook
Deeptextures
Code to synthesise textures using convolutional neural networks as described in Gatys et al. 2015 (http://arxiv.org/abs/1505.07376)
Stars: ✭ 241 (-0.41%)
Mutual labels:  jupyter-notebook
Deeplearningcoursecodes
Notes, Codes, and Tutorials for the Deep Learning Course <which I taught at ChinaHadoop>
Stars: ✭ 241 (-0.41%)
Mutual labels:  jupyter-notebook
Neural Ordinary Differential Equations
Sample implementation of Neural Ordinary Differential Equations
Stars: ✭ 242 (+0%)
Mutual labels:  jupyter-notebook
Tslab
Interactive JavaScript and TypeScript programming with Jupyter
Stars: ✭ 240 (-0.83%)
Mutual labels:  jupyter-notebook

PyCon UK 2016

NLP in 10 Lines of Code

Natural Language Processing in 10 Lines of Code

At Cytora we use NLP to extract and analyse plain text to build our structured information product.

This is the repo for our workshop at PyCon UK. In this repository you will find the step by step tutorial from the workshop on some basic Natural Language Processing tasks using spaCy, a powerful (and super fast) NLP library.

Getting started

Clone this repo from GitHub and open the directory, on a UNIX machine these actions will look like this.

git clone https://github.com/cytora/pycon-nlp-in-10-lines.git
cd pycon-nlp-in-10-lines

We recommend you to install all the required dependencies in a virtual environment such as virtualenv, however this step could be skipped.

virtualenv -p python3 venv
source venv/bin/activate

If you are using the Miniconda release of Python, you can use conda virtual environments so your virtual environment setup will be slightly different.

conda create --name venv python=3
source activate venv

To install all the required Python dependencies needed in this tutorial, you need to run this command in the cloned directory:

pip install -r requirements.txt

To install the spaCy model you need to run:

sputnik --name spacy --repository-url http://index.spacy.io install en==1.1.0

To run jupyter notebook run:

jupyter notebook

The tutorial has three parts:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].