1from hf_hub_ctranslate2 import TranslatorCT2fromHfHub, GeneratorCT2fromHfHub
2from transformers import AutoTokenizer
34model_name ="michaelfeil/ct2fast-starchat-alpha"5# use either TranslatorCT2fromHfHub or GeneratorCT2fromHfHub here, depending on model.6model = GeneratorCT2fromHfHub(7# load in int8 on CUDA8 model_name_or_path=model_name,9 device="cuda",10 compute_type="int8_float16",11# tokenizer=AutoTokenizer.from_pretrained("HuggingFaceH4/starchat-alpha")12)13outputs = model.generate(14 text=["def fibonnaci(","User: How are you doing? Bot:"],15 max_length=64,16 include_prompt_in_result=False17)18print(outputs)
Licence and other remarks:
This is just a quantized version. Licence conditions are intended to be idential to original huggingface repo.
Original description
Model Card for StarChat Alpha
StarChat is a series of language models that are fine-tuned from StarCoder to act as helpful coding assistants. StarChat Alpha is the first of these models, and as an alpha release is only intended for educational or research purpopses. In particular, the model has not been aligned to human preferences with techniques like RLHF, so may generate problematic content (especially when prompted to do so).
Model Details
Model Description
Model type: A 16B parameter GPT-like model fine-tuned on a blend of the oasst1 and databricks-dolly-15k datasets.
StarChat Alpha is intended for educational and/or research purposes and in that respect can be used to probe the programming capabilities of open-source language models.
Bias, Risks, and Limitations
StarChat Alpha has not been aligned to human preferences with techniques like RLHF or deployed with in-the-loop filtering of responses like ChatGPT, so the model can produce problematic outputs (especially when prompted to do so).
Models trained primarily on code data will also have a more skewed demographic bias commensurate with the demographics of the GitHub community, for more on this see the StarCoder dataset which is derived from The Stack.
Since the base model was pretrained on a large corpus of code, it may produce code snippets that are syntactically valid but semantically incorrect.
For example, it may produce code that does not compile or that produces incorrect results.
It may also produce code that is vulnerable to security exploits.
We have observed the model also has a tendency to produce false URLs which should be carefully inspected before clicking.
StarChat Alpha was fine-tuned from the base model StarCoder Base, please refer to its model card's Limitations Section for relevant information.
In particular, the model was evaluated on some categories of gender biases, propensity for toxicity, and risk of suggesting code completions with known security flaws; these evaluations are reported in its technical report.
How to Get Started with the Model
Use the code below to get started with the model.
python
1from transformers import pipeline
23pipe = pipeline("text-generation", model="HuggingFaceH4/starchat-alpha")4# Inputs use chat tokens 5inputs ="<|system|>\n<|end|>\n<|user|>How can I sort a list in Python?<|end|>\n<|assistant|>"6outputs = pipe(inputs)
Citation [optional]
BibTeX:
@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},
}