Commit ·
13d25bd
1
Parent(s): 9f21144
docs: update notebook info
Browse files
README.md
CHANGED
|
@@ -31,6 +31,9 @@ A deep learning-based captcha recognition project. It uses Convolutional Neural
|
|
| 31 |
3. https://www.kaggle.com/datasets/mahmoudeldebase/captcha-numbers-length-6
|
| 32 |
4. https://www.kaggle.com/datasets/bharatnaik111/vtu-university-captchas-with-labels
|
| 33 |
|
|
|
|
|
|
|
|
|
|
| 34 |
## Model Architecture
|
| 35 |
```python
|
| 36 |
# CNN
|
|
|
|
| 31 |
3. https://www.kaggle.com/datasets/mahmoudeldebase/captcha-numbers-length-6
|
| 32 |
4. https://www.kaggle.com/datasets/bharatnaik111/vtu-university-captchas-with-labels
|
| 33 |
|
| 34 |
+
## Training Notebook
|
| 35 |
+
[](https://www.kaggle.com/code/krishnatherokar/captcha-recognition)
|
| 36 |
+
|
| 37 |
## Model Architecture
|
| 38 |
```python
|
| 39 |
# CNN
|
app.py
CHANGED
|
@@ -9,7 +9,7 @@ interface = gr.Interface(
|
|
| 9 |
fn=predict_and_decode,
|
| 10 |
inputs=gr.Image(type="pil"),
|
| 11 |
outputs="text",
|
| 12 |
-
title="Captcha
|
| 13 |
examples=example_list
|
| 14 |
)
|
| 15 |
|
|
|
|
| 9 |
fn=predict_and_decode,
|
| 10 |
inputs=gr.Image(type="pil"),
|
| 11 |
outputs="text",
|
| 12 |
+
title="Captcha Recognition",
|
| 13 |
examples=example_list
|
| 14 |
)
|
| 15 |
|