kai-sheng commited on
Commit
eae8233
·
verified ·
1 Parent(s): f817ecb

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +7 -11
main.py CHANGED
@@ -1,11 +1,3 @@
1
- import tensorflow as tf
2
-
3
- # Detect and init the GPU
4
- physical_devices = tf.config.list_physical_devices('GPU')
5
- if len(physical_devices) > 0:
6
- tf.config.set_visible_devices(physical_devices[0], 'GPU')
7
- tf.config.experimental.set_memory_growth(physical_devices[0], True)
8
-
9
  import io
10
  import os
11
  from flask import Flask, request, jsonify
@@ -18,15 +10,19 @@ from keras.applications.xception import Xception # to get pre-trained model Xcep
18
  from keras.models import load_model
19
  from keras.preprocessing.sequence import pad_sequences
20
 
 
 
 
 
21
  app = Flask(__name__)
22
 
23
  MAX_LENGTH = 38
24
 
25
  # Set the TESSDATA_PREFIX environment variable
26
- os.environ['TESSDATA_PREFIX'] = '/usr/share/tesseract-ocr/4.00/tessdata'
27
 
28
  # Set the path to the Tesseract executable
29
- pytesseract.pytesseract.tesseract_cmd = r'/usr/bin/tesseract'
30
 
31
  def format_tesseract_output(output_text):
32
  formatted_text = ""
@@ -92,7 +88,7 @@ def generate_caption():
92
  # Convert the image data to a PIL image object
93
  pil_image = Image.open(io.BytesIO(image_data))
94
 
95
- extracted_text = pytesseract.image_to_string(pil_image, lang="eng+chi_sim+msa")
96
  hasText = bool(extracted_text.strip())
97
 
98
  if hasText:
 
 
 
 
 
 
 
 
 
1
  import io
2
  import os
3
  from flask import Flask, request, jsonify
 
10
  from keras.models import load_model
11
  from keras.preprocessing.sequence import pad_sequences
12
 
13
+ print(os.popen(f'cat /etc/debian_version').read())
14
+ print(os.popen(f'cat /etc/issue').read())
15
+ print(os.popen(f'apt search tesseract').read())
16
+
17
  app = Flask(__name__)
18
 
19
  MAX_LENGTH = 38
20
 
21
  # Set the TESSDATA_PREFIX environment variable
22
+ # os.environ['TESSDATA_PREFIX'] = '/cache/huggingface/downloads/tesseract-ocr/4.00/tessdata'
23
 
24
  # Set the path to the Tesseract executable
25
+ # pytesseract.pytesseract.tesseract_cmd = r'/usr/bin/tesseract'
26
 
27
  def format_tesseract_output(output_text):
28
  formatted_text = ""
 
88
  # Convert the image data to a PIL image object
89
  pil_image = Image.open(io.BytesIO(image_data))
90
 
91
+ extracted_text = pytesseract.image_to_string(pil_image)
92
  hasText = bool(extracted_text.strip())
93
 
94
  if hasText: