Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Tonic1/marker-texify
Tonic
/
marker-texify
like
4
Runtime error
App
Files
Files
Community
2
ddac901
marker-texify
/
run_ocr_app.py
Tonic
Initial Commit
2e1d4b5
10 months ago
raw
Copy download link
history
blame
Safe
211 Bytes
import
subprocess
import
os
def
run_app
():
cur_dir = os.path.dirname(os.path.abspath(__file__))
ocr_app_path = os.path.join(cur_dir,
"ocr_app.py"
)
subprocess.run([
"streamlit"
,
"run"
, ocr_app_path])