Spaces:
Sleeping
Sleeping
Luis J Camargo commited on
Commit ·
7423198
1
Parent(s): 4948717
fix: decrease layout threshold from 0.75 to 0.1
Browse files
app.py
CHANGED
|
@@ -71,9 +71,9 @@ def setup_pipeline():
|
|
| 71 |
vl_rec_model_name="PaddleOCR-VL-1.5-0.9B",
|
| 72 |
vl_rec_model_dir=local_model_path,
|
| 73 |
device="cpu",
|
| 74 |
-
layout_threshold=0.
|
| 75 |
enable_mkldnn=True,
|
| 76 |
-
use_queues=
|
| 77 |
)
|
| 78 |
logger.info("✨ Pipeline instance created successfully!")
|
| 79 |
|
|
|
|
| 71 |
vl_rec_model_name="PaddleOCR-VL-1.5-0.9B",
|
| 72 |
vl_rec_model_dir=local_model_path,
|
| 73 |
device="cpu",
|
| 74 |
+
layout_threshold=0.1,
|
| 75 |
enable_mkldnn=True,
|
| 76 |
+
use_queues=True,
|
| 77 |
)
|
| 78 |
logger.info("✨ Pipeline instance created successfully!")
|
| 79 |
|