Update README.md
Browse files
README.md
CHANGED
@@ -28,7 +28,7 @@ import torch
|
|
28 |
import IPython.display as ipd
|
29 |
|
30 |
## 이미지 준비
|
31 |
-
img_path_list = sorted(glob.glob('mathematical_expression_2-*.png'))
|
32 |
img_list = [Image.open(img_path).convert("RGB") for img_path in img_path_list]
|
33 |
|
34 |
## 모델 및 프로세서 준비
|
@@ -61,4 +61,4 @@ for img,text in zip(img_list, generated_text):
|
|
61 |
|
62 |
```
|
63 |
### Result example
|
64 |
-
<img src="./result.png" alt="Result" width="1200"/>
|
|
|
28 |
import IPython.display as ipd
|
29 |
|
30 |
## 이미지 준비
|
31 |
+
img_path_list = sorted(glob.glob('images/mathematical_expression_2-*.png'))
|
32 |
img_list = [Image.open(img_path).convert("RGB") for img_path in img_path_list]
|
33 |
|
34 |
## 모델 및 프로세서 준비
|
|
|
61 |
|
62 |
```
|
63 |
### Result example
|
64 |
+
<img src="./images/result.png" alt="Result" width="1200"/>
|