Interactive MNIST Digit Classification & NLP Sentiment Analysis
Draw a digit and see the neural network's prediction
Draw a digit to see predictions
Enter text to analyze its sentiment (positive/negative)
Enter some text to analyze sentiment
The MNIST classifier uses a simple neural network with one hidden layer (128 neurons) trained on 60,000 handwritten digits. Draw a digit and see the model's prediction confidence for each digit (0-9).
The sentiment analyzer uses a Naive Bayes classifier trained on example sentences. It analyzes the words in your text to predict whether the sentiment is positive (1) or negative (0).
This demo simulates the behavior of TensorFlow/Keras models for MNIST and scikit-learn for NLP. In a real implementation, you would connect to a backend running the actual models.