CoolFace
Apppublic

BEE-spoke-data/beecoder-playground

sourceHugging Faceapache-2.0updated 9mo agoView on Hugging Face
1likes
README.md46 linesDownload Raw Back to root
1---2title: BeeCoder Demo3emoji: ๐Ÿ4colorFrom: gray5colorTo: yellow6sdk: gradio7sdk_version: 3.28.38app_file: app.py9pinned: true10license: apache-2.011---12 13# ๐ŸBeeCoder Demo๐Ÿ14 15## Code-Completion Playground ๐Ÿ’ป with ๐Ÿ[BeeCoder](https://huggingface.co/BEE-spoke-data/smol_llama-101M-GQA-python) Models16 17This is a demo playground for generating Python code with the power of ๐Ÿ[BeeCoder](https://huggingface.co/BEE-spoke-data/smol_llama-101M-GQA-python), a **fine-tuned** version of the tiny [101M base model](https://huggingface.co/BEE-spoke-data/smol_llama-101M-GQA) on a dataset of pypi packages.18 19โ„น๏ธ This is not an instruction model but just a code completion tool.20 21---22 23**Intended Use**: This app and its [supporting model](https://huggingface.co/BEE-spoke-data/smol_llama-101M-GQA-python) are provided for demonstration purposes only; not to serve as a replacement for human expertise. For more details on the model, please refer to the [model card](https://huggingface.co/BEE-spoke-data/smol_llama-101M-GQA-python).24 25In our country, we say _"To let 100M parameters model generate python script and not validate is like to let monkey fly a plane"_. So please be careful with the generated code.26 27---28 29## Base Model Information30 31The base model, smol_llama-101M-GQA, has been pre-trained on a relatively small number of high quality tokens (less than ~20B). It has impressive performance despite its compact size of 101M parameters. Training data for this base model included:32 33- [JeanKaddour/minipile](https://huggingface.co/datasets/JeanKaddour/minipile)34- [pszemraj/simple_wikipedia_LM](https://huggingface.co/datasets/pszemraj/simple_wikipedia_LM)35- [BEE-spoke-data/wikipedia-20230901.en-deduped](https://huggingface.co/datasets/BEE-spoke-data/wikipedia-20230901.en-deduped)36- [mattymchen/refinedweb-3m](https://huggingface.co/datasets/mattymchen/refinedweb-3m)37 38You can find more information about the base model [here](https://huggingface.co/BEE-spoke-data/smol_llama-101M-GQA).39 40---41 42### Credits43 44This app is modified from a demo playground originally built for [StarCoder](https://huggingface.co/bigcode/starcoder) by [BigCode](https://huggingface.co/bigcode).  You can find the original demo [here](https://huggingface.co/spaces/bigcode/bigcode-playground).45 46---