Skip to content

Instantly share code, notes, and snippets.

@oftensmile
oftensmile / spacy_intro.ipynb
Created June 29, 2017 01:16 — forked from aparrish/spacy_intro.ipynb
NLP Concepts with spaCy
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# Timing it
from time import time
start_time = time();
# Import data
from sklearn.datasets import fetch_mldata
from sklearn.cross_validation import train_test_split
mnist = fetch_mldata('MNIST original');
x_train,x_test,y_train,y_test = train_test_split(mnist.data, mnist.target);
@oftensmile
oftensmile / README.md
Created March 30, 2016 19:24 — forked from GilLevi/README.md
Emotion Recognition in the Wild via Convolutional Neural Networks and Mapped Binary Patterns

Gil Levi and Tal Hassner, Emotion Recognition in the Wild via Convolutional Neural Networks and Mapped Binary Patterns

Convolutional neural networks for emotion classification from facial images as described in the following work:

Gil Levi and Tal Hassner, Emotion Recognition in the Wild via Convolutional Neural Networks and Mapped Binary Patterns, Proc. ACM International Conference on Multimodal Interaction (ICMI), Seattle, Nov. 2015

Project page: http://www.openu.ac.il/home/hassner/projects/cnn_emotions/

If you find our models useful, please add suitable reference to our paper in your work.