Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 607 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 607 Bytes

tensorflow-text-classification

Text Classification with the High-Level TensorFlow API

This is the source code for the Medium article: https://medium.com/quantitative-technologies/text-classification-with-the-high-level-tensorflow-api-390809987a4f

File Descriptions

perceptron.py Trains and evaluates the Perceptron model.

perceptron_example.py Runs the Perceptron Example in the article.

mlp.py Trains and evaluates the Multilayer Perceptron model.

rnn.py Trains and evaluates Recurrent Neural Network model.

common.py Common routines used by the above code files.