merve HF staff commited on
Commit
84722ef
1 Parent(s): c90abca

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ocr
4
+ - computer vision
5
+ - object detection
6
+ license:
7
+ - cc0.0
8
+ ---
9
+
10
+ ## Keras Implementation of OCR model for reading captcha 🤖🦹🏻
11
+
12
+ This repo contains the model and the notebook [to this Keras example on OCR model for reading captcha](https://keras.io/examples/vision/captcha_ocr/).
13
+
14
+ Full credits to: [Aakash Kumar Nain](https://twitter.com/A_K_Nain)
15
+
16
+ ## Background Information
17
+ This example demonstrates a simple OCR model built with the Functional API. Apart from combining CNN and RNN, it also illustrates how you can instantiate a new layer and use it as an "Endpoint layer" for implementing CTC loss.
18
+ This model uses subclassing so it's best if you could refer to [this guide](https://keras.io/guides/making_new_layers_and_models_via_subclassing/).
19
+ ![ocr](https://keras.io/img/examples/vision/captcha_ocr/captcha_ocr_19_1.png)
20
+