Spaces:
Running on Zero
Running on Zero
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,41 +1,12 @@
|
|
| 1 |
-
# VisionMark
|
| 2 |
-
|
| 3 |
-
VisionMark is a local-first document conversion pipeline that transforms various file formats into clean, structured Markdown optimized for Large Language Model (LLM) context windows.
|
| 4 |
-
|
| 5 |
-
While other tools rely on cloud APIs and external services, VisionMark is built to run entirely on your local machine. It uses a hybrid approach: rule-based parsing for standard text formats and native, local execution of the Qwen2.5-VL vision model for complex, scanned, or visually-heavy documents. This ensures your data remains private and you incur zero API costs.
|
| 6 |
-
|
| 7 |
---
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
## Supported Formats
|
| 21 |
-
Category | Formats |
|
| 22 |
-
|------------|----------------------------------|
|
| 23 |
-
| Documents | PDF, DOCX, PPTX, XLSX |
|
| 24 |
-
| Images | PNG, JPG, JPEG, BMP |
|
| 25 |
-
| Code | Python, R, JavaScript, C++, etc.|
|
| 26 |
-
| Notebooks | Jupyter Notebooks (.ipynb) |
|
| 27 |
-
| Markdown | MD, RMD |
|
| 28 |
-
| Text | TXT |
|
| 29 |
-
|
| 30 |
-
---
|
| 31 |
-
|
| 32 |
-
## Installation
|
| 33 |
-
|
| 34 |
-
```bash
|
| 35 |
-
git clone https://github.com/mkdir-smyk/VisionMark.git
|
| 36 |
-
cd VisionMark
|
| 37 |
-
|
| 38 |
-
python -m venv venv
|
| 39 |
-
source venv/bin/activate
|
| 40 |
-
|
| 41 |
-
pip install -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: VisionMark
|
| 3 |
+
emoji: 👀
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 5.38.2
|
| 8 |
+
python_version: '3.11'
|
| 9 |
+
app_file: app.py
|
| 10 |
+
pinned: false
|
| 11 |
+
license: mit
|
| 12 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|