codeparrot/code-generation-models
257
1---2title: Code generation with 🤗3emoji: ✨4colorFrom: purple5colorTo: yellow6sdk: streamlit7sdk_version: 1.9.08app_file: app.py9models: ["lvwerra/codeparrot", "Salesforce/codegen-16B-mono", "facebook/incoder-6B"]10datasets: ["lvwerra/github-code", "openai_humaneval", "the_pile", "code_search_net", "mbpp", "loubnabnl/apps", "lvwerra/codeparrot-clean"]11pinned: true12license: apache-2.013---14 15# Configuration16`title`: _string_ 17Display title for the Space18`emoji`: _string_ 19Space emoji (emoji-only character allowed)20`colorFrom`: _string_ 21Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)22`colorTo`: _string_ 23Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)24`sdk`: _string_ 25Can be either `gradio` or `streamlit`26`sdk_version` : _string_ 27Only applicable for `streamlit` SDK. 28See [doc](https://hf.co/docs/hub/spaces) for more info on supported versions.29 30`app_file`: _string_ 31Path to your main application file (which contains either `gradio` or `streamlit` Python code). 32Path is relative to the root of the repository.33 34`pinned`: _boolean_ 35Whether the Space stays on top of your list.36 