CoolFace
Apppublic

AP2122/Practica1

sourceHugging Facecc0-1.0updated 5y agoView on Hugging Face
20likes
README.md47 linesDownload Raw Back to root
1---2title: Practica13emoji: 💻4colorFrom: purple5colorTo: pink6sdk: gradio7app_file: app.py8pinned: false9license: cc0-1.010---11 12# Configuration13 14`title`: _string_15Display title for the Space16 17`emoji`: _string_18Space emoji (emoji-only character allowed)19 20`colorFrom`: _string_21Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)22 23`colorTo`: _string_24Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)25 26`sdk`: _string_27Can be either `gradio`, `streamlit`, or `static`28 29`sdk_version` : _string_30Only applicable for `streamlit` SDK.  31See [doc](https://hf.co/docs/hub/spaces) for more info on supported versions.32 33`app_file`: _string_34Path to your main application file (which contains either `gradio` or `streamlit` Python code, or `static` html code).35Path is relative to the root of the repository.36 37`models`: _List[string]_38HF model IDs (like "gpt2" or "deepset/roberta-base-squad2") used in the Space.39Will be parsed automatically from your code if not specified here.40 41`datasets`: _List[string]_42HF dataset IDs (like "common_voice" or "oscar-corpus/OSCAR-2109") used in the Space.43Will be parsed automatically from your code if not specified here.44 45`pinned`: _boolean_46Whether the Space stays on top of your list.47