mindee/doctr
225
1---2title: docTR3emoji: ๐4colorFrom: purple5colorTo: pink6sdk: streamlit7sdk_version: 1.39.08app_file: app.py9pinned: false10license: apache-2.011---12 13## Configuration14 15`title`: _string_16Display title for the Space17 18`emoji`: _string_19Space emoji (emoji-only character allowed)20 21`colorFrom`: _string_22Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)23 24`colorTo`: _string_25Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)26 27`sdk`: _string_28Can be either `gradio` or `streamlit`29 30`sdk_version` : _string_31Only applicable for `streamlit` SDK.32See [doc](https://hf.co/docs/hub/spaces) for more info on supported versions.33 34`app_file`: _string_35Path to your main application file (which contains either `gradio` or `streamlit` Python code).36Path is relative to the root of the repository.37 38`pinned`: _boolean_39Whether the Space stays on top of your list.40 41## Run the demo locally42 43```bash44cd demo45pip install -r pt-requirements.txt46streamlit run app.py47```48 