Genzo1010 commited on
Commit
f0b0206
·
verified ·
1 Parent(s): ec0222b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 dynamic number of workers
32
- executor = ThreadPoolExecutor(max_workers=num_cpus)
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 = ''