Venkat V commited on
Commit
6baf36d
·
0 Parent(s):

Add flowchart pipeline

Browse files
.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