Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,8 +28,8 @@ paddle_ocr = PaddleOCR(lang='en', use_angle_cls=True, use_gpu=True)
|
|
28 |
# Get the number of available CPUs
|
29 |
num_cpus = os.cpu_count()
|
30 |
|
31 |
-
# Initialize ThreadPoolExecutor with
|
32 |
-
executor = ThreadPoolExecutor(max_workers=
|
33 |
|
34 |
def ocr_with_doctr(file):
|
35 |
text_output = ''
|
|
|
28 |
# Get the number of available CPUs
|
29 |
num_cpus = os.cpu_count()
|
30 |
|
31 |
+
# Initialize ThreadPoolExecutor with 2 workers
|
32 |
+
executor = ThreadPoolExecutor(max_workers=2)
|
33 |
|
34 |
def ocr_with_doctr(file):
|
35 |
text_output = ''
|