BeyzaTopbas commited on
Commit
abcd776
·
verified ·
1 Parent(s): 357c6de

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -4
README.md CHANGED
@@ -10,10 +10,20 @@ tags:
10
  pinned: false
11
  short_description: Streamlit template space
12
  ---
 
13
 
14
- # Welcome to Streamlit!
15
 
16
- Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
 
 
 
17
 
18
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
19
- forums](https://discuss.streamlit.io).
 
 
 
 
 
 
 
10
  pinned: false
11
  short_description: Streamlit template space
12
  ---
13
+ # 🔢 Digit Recognizer App
14
 
15
+ This Streamlit application predicts handwritten digits using a machine learning model trained on the MNIST dataset.
16
 
17
+ ## 🚀 How it works
18
+ 1. Upload an image of a digit
19
+ 2. The image is converted to 28x28 grayscale
20
+ 3. The model predicts the digit
21
 
22
+ ## 🤖 Model
23
+ - Random Forest Classifier
24
+ - Accuracy: ~96%
25
+
26
+ ## 🛠 Tech Stack
27
+ - Scikit-learn
28
+ - Streamlit
29
+ - Hugging Face Spaces