Instructions to use keras-io/ocr-for-captcha with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use keras-io/ocr-for-captcha with TF-Keras:
# Note: 'keras<3.x' or 'tf_keras' must be installed (legacy) # See https://github.com/keras-team/tf-keras for more details. from huggingface_hub import from_pretrained_keras model = from_pretrained_keras("keras-io/ocr-for-captcha") - Notebooks
- Google Colab
- Kaggle
Update README.md
#2
by hoangthan - opened
README.md
CHANGED
|
@@ -6,6 +6,7 @@ tags:
|
|
| 6 |
- image-to-text
|
| 7 |
license:
|
| 8 |
- cc0-1.0
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
## Keras Implementation of OCR model for reading captcha 🤖🦹🏻
|
|
@@ -17,5 +18,4 @@ Full credits to: [Aakash Kumar Nain](https://twitter.com/A_K_Nain)
|
|
| 17 |
## Background Information
|
| 18 |
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.
|
| 19 |
This model uses subclassing, learn more about subclassing from [this guide](https://keras.io/guides/making_new_layers_and_models_via_subclassing/).
|
| 20 |
-

|
| 21 |
-
|
|
|
|
| 6 |
- image-to-text
|
| 7 |
license:
|
| 8 |
- cc0-1.0
|
| 9 |
+
pipeline_tag: image-to-text
|
| 10 |
---
|
| 11 |
|
| 12 |
## Keras Implementation of OCR model for reading captcha 🤖🦹🏻
|
|
|
|
| 18 |
## Background Information
|
| 19 |
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.
|
| 20 |
This model uses subclassing, learn more about subclassing from [this guide](https://keras.io/guides/making_new_layers_and_models_via_subclassing/).
|
| 21 |
+

|
|
|