All Projects → RaRe-Technologies → Movie Plots By Genre

RaRe-Technologies / Movie Plots By Genre

Movie plots by genre tutorial at PyData Berlin 2016

Projects that are alternatives of or similar to Movie Plots By Genre

Gpt2bot
Your new Telegram buddy powered by transformers
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Nlp
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Snap N Eat
Food detection and recommendation with deep learning
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Satellite analysis
Analysis scripts of things related to satellites
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Scnn
Segment-CNN: A Framework for Temporal Action Localization in Untrimmed Videos via Multi-stage CNNs
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Pytorch Transformers Classification
Based on the Pytorch-Transformers library by HuggingFace. To be used as a starting point for employing Transformer models in text classification tasks. Contains code to easily train BERT, XLNet, RoBERTa, and XLM models for text classification.
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Deep Learning In Production
Develop production ready deep learning code, deploy it and scale it
Stars: ✭ 216 (-6.09%)
Mutual labels:  jupyter-notebook
Applied Reinforcement Learning
Reinforcement Learning and Decision Making tutorials explained at an intuitive level and with Jupyter Notebooks
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Statistics python codes
《统计学原理实验教程(Python)》书中代码实现。尽可能加注释,力求代码的可复用性。
Stars: ✭ 230 (+0%)
Mutual labels:  jupyter-notebook
Dsnd term1
Contains files related to content and project of DSND
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Alphatools
Quantitative finance research tools in Python
Stars: ✭ 226 (-1.74%)
Mutual labels:  jupyter-notebook
Kagglestruggle
Kaggle Struggle
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Question Generation
Generating multiple choice questions from text using Machine Learning.
Stars: ✭ 227 (-1.3%)
Mutual labels:  jupyter-notebook
18335
18.335 - Introduction to Numerical Methods course
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Predicting winning teams
This is the code for "Predicting the Winning Team with Machine Learning" by Siraj Raval on Youtube
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Coronavirus Epidemic Covid 19
👩🏻‍⚕️Covid-19 estimation and forecast using statistical model; 新型冠状病毒肺炎统计模型预测 (Jan 2020)
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Weatherbench
A benchmark dataset for data-driven weather forecasting
Stars: ✭ 227 (-1.3%)
Mutual labels:  jupyter-notebook
Ssd scene text detection
Detect text in natural images with SSD, Single Shot Detection
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook
Transfer learning music
Transfer learning for music classification and regression tasks
Stars: ✭ 228 (-0.87%)
Mutual labels:  jupyter-notebook
Cd4ml Workshop
Repository with sample code and instructions for "Continuous Intelligence" and "Continuous Delivery for Machine Learning: CD4ML" workshops
Stars: ✭ 229 (-0.43%)
Mutual labels:  jupyter-notebook

movie-plots-by-genre

Movie plots by genre tutorial at PyData Berlin 20 May 2016.

See slides for the narrative.

Setting Up

Make sure you have Python 3.

  • Clone this repository
git clone https://github.com/RaRe-Technologies/movie-plots-by-genre.git

if you don't have git you can also download a zip of this repo https://github.com/RaRe-Technologies/movie-plots-by-genre/archive/master.zip

  • Install virtualenv
(sudo) pip install virtualenv
  • Create a virtual env and install all the requirements.
cd movie-plots-by-genre/
virtualenv gensim # if you have both python2 and python3 then use virtualenv -p python3 gensim
source gensim/bin/activate
pip3 install cython gensim sklearn pandas matplotlib nltk pyemd jupyter

NOTE:On OSX you might want to download pyemd from github and install it via python3 setup.py install.

  • Download Google News pre-trained word2vec model (1.5 Gb) from here

  • Download nltk data

python -m nltk.downloader punkt
  • Fire up a jupyter notebook
jupyter notebook

If you are short on bandwidth then you will be able to follow most of the tutorial just with these libraries:

  • Python 3
  • pip3 install cython gensim sklearn pandas matplotlib nltk pyemd jupyter
  • python -m nltk.downloader punkt
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].