Spaces:
Sleeping
Sleeping
Commit ·
e4a0733
1
Parent(s): 2237e32
Reset and properly configure LFS
Browse files- .gitattributes +3 -0
- .gitignore +5 -0
- app.py +3 -0
- modules/__init__.py +0 -0
- modules/det_text.py +3 -0
- modules/export_doc.py +3 -0
- modules/models.py +3 -0
- modules/rec_text.py +3 -0
- requirements.txt +6 -0
.gitattributes
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 1 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.py filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
modules/models.py filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 6 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.pyc
|
| 3 |
+
*.pyo
|
| 4 |
+
*.pyd
|
| 5 |
+
.Python
|
app.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b413392f4759ad2691fc14c829199c84a809458992d5effed499bf6ce19bfa9f
|
| 3 |
+
size 2656
|
modules/__init__.py
ADDED
|
File without changes
|
modules/det_text.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b227b0943d7b8de09073d056e1c483034c9be875b0e9dade9e4411327d330183
|
| 3 |
+
size 28506
|
modules/export_doc.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c27e55c701720fe8fa3ec7779e44283590e38af3322e66c393da5bedee3bddb4
|
| 3 |
+
size 6371
|
modules/models.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3889f56ca0637a24a168ebebede6ba598043b8ed4430596c5ec8276c639f89c8
|
| 3 |
+
size 13519272
|
modules/rec_text.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e76cc8de4875638700279e2e6410610b4aacce4d3d3b191f564cce29747780c
|
| 3 |
+
size 13314
|
requirements.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio
|
| 2 |
+
opencv-python
|
| 3 |
+
numpy
|
| 4 |
+
onnxruntime
|
| 5 |
+
shapely
|
| 6 |
+
pyclipper
|