Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| starchat-beta.Q2_K.gguf | Q2_K | 2.17GB |
| starchat-beta.Q3_K_S.gguf | Q3_K_S | 2.34GB |
| starchat-beta.Q3_K.gguf | Q3_K | 7.66GB |
| starchat-beta.Q3_K_M.gguf | Q3_K_M | 7.66GB |
| starchat-beta.Q3_K_L.gguf | Q3_K_L | 8.5GB |
| starchat-beta.IQ4_XS.gguf | IQ4_XS | 8.04GB |
| starchat-beta.Q4_0.gguf | Q4_0 | 8.37GB |
| starchat-beta.IQ4_NL.gguf | IQ4_NL | 8.46GB |
| starchat-beta.Q4_K_S.gguf | Q4_K_S | 8.46GB |
| starchat-beta.Q4_K.gguf | Q4_K | 9.28GB |
| starchat-beta.Q4_K_M.gguf | Q4_K_M | 9.28GB |
| starchat-beta.Q4_1.gguf | Q4_1 | 9.26GB |
| starchat-beta.Q5_0.gguf | Q5_0 | 10.14GB |
| starchat-beta.Q5_K_S.gguf | Q5_K_S | 10.14GB |
| starchat-beta.Q5_K.gguf | Q5_K | 10.71GB |
| starchat-beta.Q5_K_M.gguf | Q5_K_M | 10.71GB |
| starchat-beta.Q5_1.gguf | Q5_1 | 11.02GB |
| starchat-beta.Q6_K.gguf | Q6_K | 12.01GB |
| starchat-beta.Q8_0.gguf | Q8_0 | 15.5GB |

openassistant-guanaco dataset. We found that removing the in-built alignment of the OpenAssistant dataset boosted performance on the Open LLM Leaderboard and made the model more helpful at coding tasks. However, this means that model is likely to generate problematic text when prompted to do so and should only be used for educational and research purposes.openassistant-guanaco dataset.OpenAssistant/oasst1 dataset, which contains a diverse range of dialogues in over 35 languages. As a result, the model can be used for chat and you can check out our demo to test its coding capabilities.pipeline() function from 🤗 Transformers:1import torch
2from transformers import pipeline
3
4pipe = pipeline("text-generation", model="HuggingFaceH4/starchat-beta", torch_dtype=torch.bfloat16, device_map="auto")
5
6# We use a variant of ChatML to format each message
7prompt_template = "<|system|>\n<|end|>\n<|user|>\n{query}<|end|>\n<|assistant|>"
8prompt = prompt_template.format(query="How do I sort a list in Python?")
9# We use a special <|end|> token with ID 49155 to denote ends of a turn
10outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.2, top_k=50, top_p=0.95, eos_token_id=49155)
11# You can sort a list in Python by using the sort() method. Here's an example:\n\n```\nnumbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]\nnumbers.sort()\nprint(numbers)\n```\n\nThis will sort the list in place and print the sorted list.openassistant-guanaco dataset. We applied the same recipe used to filter the ShareGPT datasets behind the WizardLM.| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.5321 | 0.98 | 15 | 1.2856 |
| 1.2071 | 1.97 | 30 | 1.2620 |
| 1.0162 | 2.95 | 45 | 1.2853 |
| 0.8484 | 4.0 | 61 | 1.3274 |
| 0.6981 | 4.98 | 76 | 1.3994 |
| 0.5668 | 5.9 | 90 | 1.4720 |
@article{Tunstall2023starchat-alpha,
author = {Tunstall, Lewis and Lambert, Nathan and Rajani, Nazneen and Beeching, Edward and Le Scao, Teven and von Werra, Leandro and Han, Sheon and Schmid, Philipp and Rush, Alexander},
title = {Creating a Coding Assistant with StarCoder},
journal = {Hugging Face Blog},
year = {2023},
note = {https://huggingface.co/blog/starchat},
}