Spaces:
Sleeping
Sleeping
Venkat V
commited on
Commit
·
6baf36d
0
Parent(s):
Add flowchart pipeline
Browse files- .DS_Store +0 -0
- .gitattributes +2 -0
- .gitignore +4 -0
- Dockerfile +1 -0
- README.md +1 -0
- app.py +1 -0
- assets/test.png +0 -0
- graph_module/__init__.py +1 -0
- models/.DS_Store +0 -0
- models/tokenizer/.keep +0 -0
- models/yolov5s.onnx +0 -0
- ocr_module/__init__.py +1 -0
- requirements.txt +6 -0
- streamlit_app.py +1 -0
- summarizer_module/__init__.py +1 -0
- utils/image_helpers.py +1 -0
- yolo_module/__init__.py +1 -0
.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
.gitattributes
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
models/*.pt filter=lfs diff=lfs merge=lfs -text
|
2 |
+
models/*.onnx filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
venv/
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
models/*.bin
|
Dockerfile
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
FROM python:3.10
|
README.md
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Flowchart Pipeline Project
|
app.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|
assets/test.png
ADDED
![]() |
graph_module/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|
models/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
models/tokenizer/.keep
ADDED
File without changes
|
models/yolov5s.onnx
ADDED
File without changes
|
ocr_module/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|
requirements.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastapi
|
2 |
+
uvicorn[standard]
|
3 |
+
pillow
|
4 |
+
shapely
|
5 |
+
pytesseract
|
6 |
+
transformers
|
streamlit_app.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|
summarizer_module/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|
utils/image_helpers.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|
yolo_module/__init__.py
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Placeholder
|