Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TensorFlow - Text Classification using Neural Networks

Is there any example on how can TensorFlow be used for text classification using neural networks?

like image 766
Sumit Chawla Avatar asked Nov 14 '15 05:11

Sumit Chawla


2 Answers

I've started putting together a set of examples for text classification on DBPedia dataset (predicting class of object from its description) as part of examples for Scikit Flow: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/learn/text_classification.py

Going to expand this example and write a blog post when will have enough different models showcased. Feel free to suggest other datasets and models you would be interested to see.

like image 91
ilblackdragon Avatar answered Sep 23 '22 04:09

ilblackdragon


Denny Britz has some great tutorials for Deep learning on his blog at here

and has an example on github here

Some of his examples don't use tensor flow but the one I linked to github uses CNN for text classification using tensor flow

like image 27
Camron_Godbout Avatar answered Sep 21 '22 04:09

Camron_Godbout