TensorFlow - text classification using neural networks

Is there any example of how TensorFlow can be used to classify text using neural networks?

+6
source share
2 answers

I started collecting a set of examples for classifying text in a DBPedia dataset (predicting an object class from its description) as an example for Scikit Flow : https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/learn/text_classification .py

Let's move on to the extension of this example and write a blog post when several different models are shown. Feel free to suggest other datasets and models that interest you.

+4
source

Danny Britz has great deep learning tutorials on his blog here

and has an example on github here

Some of his examples don't use tensor stream, but the one I linked to github uses CNN to classify text using tensor stream

+3
source

All Articles