You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running tutorials, it's necessary to install mltu for a specific tutorial, for example:
10
10
```bash
11
-
cd mltu
12
-
```
13
-
Install the requirements:
14
-
```bash
15
-
pip install -r requirements.txt
16
-
```
17
-
18
-
Install the mltu package
19
-
```bash
20
-
pip install .
11
+
pip install mltu==0.1.3
21
12
```
13
+
Each tutorial has its own requirements.txt file for a specific mltu version. As this project progress, the newest versions may have breaking changes, so it's recommended to use the same version as in the tutorial.
22
14
23
15
# Tutorials and Examples:
24
-
...
16
+
1.[Text Recognition With TensorFlow and CTC network](https://pylessons.com/ctc-text-recognition), code in ```Tutorials\01_image_to_word``` folder;
17
+
2.[TensorFlow OCR model for reading Captchas](https://pylessons.com/tensorflow-ocr-captcha), code in ```Tutorials\02_captcha_to_text``` folder;
0 commit comments