krishnatherokar commited on
Commit
13d25bd
·
1 Parent(s): 9f21144

docs: update notebook info

Browse files
Files changed (2) hide show
  1. README.md +3 -0
  2. app.py +1 -1
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
+ [![KAGGLE](https://img.shields.io/badge/Kaggle-Captcha%20Recognition-20BEFF?style=for-the-badge&logo=kaggle&logoColor=white)](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 Decoder",
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