obi/Medical-Note-Deidentification
39
1---2title: Medical Note Deidentification3emoji: ๐ 4colorFrom: pink5colorTo: blue6sdk: gradio7sdk_version: 3.12.08app_file: app.py9pinned: false10license: mit11---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`, `streamlit`, or `static`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, or `static` html code).36Path is relative to the root of the repository.37 38`models`: _List[string]_39HF model IDs (like "gpt2" or "deepset/roberta-base-squad2") used in the Space.40Will be parsed automatically from your code if not specified here.41 42`datasets`: _List[string]_43HF dataset IDs (like "common_voice" or "oscar-corpus/OSCAR-2109") used in the Space.44Will be parsed automatically from your code if not specified here.45 46`pinned`: _boolean_47Whether the Space stays on top of your list.48 