CoolFace
Apppublic

electblake/image-data-extractor

sourceHugging Faceupdated 2mo agoView on Hugging Face
1likes
README.md34 linesDownload Raw Back to root
1---2title: Image Data Extractor3emoji: 🧾4colorFrom: blue5colorTo: indigo6sdk: gradio7sdk_version: 6.20.08python_version: "3.12"9app_file: app.py10pinned: false11models:12  - numind/NuExtract313short_description: Extract structured JSON from documents with NuExtract3.14---15 16# Image Data Extractor17 18Image Data Extractor is a Gradio app for extracting structured JSON from document images with [NuExtract3](https://huggingface.co/numind/NuExtract3).19 20Upload a receipt, invoice, or other document image, optionally add accompanying text, and choose a JSON template for schema-guided structured extraction. You can also generate a grounded template from the uploaded image before running extraction.21 22The inference function uses Hugging Face ZeroGPU dynamic GPU allocation. Select ZeroGPU in the Space hardware settings before launching the app.23 24## Run locally25 26Install the project dependencies and launch the Hugging Face Spaces entry point:27 28```bash29uv sync30uv run app.py31```32 33The Hugging Face Space starts from `app.py`. Model loading and the ZeroGPU pipelines are defined in `model.py`.34