Spaces:
Runtime error
Runtime error
kristada673
commited on
Commit
•
c36dd5c
1
Parent(s):
c4487ac
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
import numpy as np
|
3 |
from transformers import LayoutLMv2Processor, LayoutLMv2ForTokenClassification
|
|
|
1 |
+
import os
|
2 |
+
os.system('pip install pyyaml==5.1')
|
3 |
+
# workaround: install old version of pytorch since detectron2 hasn't released packages for pytorch 1.9 (issue: https://github.com/facebookresearch/detectron2/issues/3158)
|
4 |
+
os.system('pip install torch==1.8.0+cu101 torchvision==0.9.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html')
|
5 |
+
|
6 |
+
# install detectron2 that matches pytorch 1.8
|
7 |
+
# See https://detectron2.readthedocs.io/tutorials/install.html for instructions
|
8 |
+
os.system('pip install -q detectron2 -f https://dl.fbaipublicfiles.com/detectron2/wheels/cu101/torch1.8/index.html')
|
9 |
+
|
10 |
+
## install PyTesseract
|
11 |
+
os.system('pip install -q pytesseract')
|
12 |
+
|
13 |
import gradio as gr
|
14 |
import numpy as np
|
15 |
from transformers import LayoutLMv2Processor, LayoutLMv2ForTokenClassification
|