stabilityai / stable-code-3b

huggingface.co
Total runs: 5.4K
24-hour runs: 0
7-day runs: 616
30-day runs: -2.3K
Model's Last Updated: July 10 2024
text-generation

Introduction of stable-code-3b

Model Details of stable-code-3b

stable-code-3b

Please note: For commercial use, please refer to https://stability.ai/license .

Model Description

stable-code-3b is a 2.7B billion parameter decoder-only language model pre-trained on 1.3 trillion tokens of diverse textual and code datasets. stable-code-3b is trained on 18 programming languages (selected based on the 2023 StackOverflow Developer Survey) and demonstrates state-of-the-art performance (compared to models of similar size) on the MultiPL-E metrics across multiple programming languages tested using BigCode's Evaluation Harness .

spiderchart

Model Size Python C++ Javascript Java PHP Rust
Stable Code 3B 32.4% 30.9% 32.1% 32.1% 24.2% 23.0%
CodeLLama 7B 30.0% 28.2% 32.5% 31.1% 25.7% 26.3%
Deepseek Coder 1.3B 28.6% 29.2% 28.7% 29.0% 23.6% 18.5%
Wizard Coder 3B 31.6% 25.6% 26.2% 25.8% 25.3% 20.4%
StarCoder 3B 21.6% 19.8% 21.5% 20.5% 19.0% 16.9%
Replit Code V1.5 3B 23.0% 25.9% 26.2% 23.6% 23.2% 21.5%
Deci Coder 1B 19.1% 6.8% 18.4% 16.7% 2.1% 1.7%

Key Features

  • Fill in Middle Capability (FIM)
  • Supports Long Context, trained with Sequences upto 16,384
Usage

Get started generating text with stable-code-3b by using the following code snippet:

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("stabilityai/stable-code-3b")
model = AutoModelForCausalLM.from_pretrained(
  "stabilityai/stable-code-3b",
  torch_dtype="auto",
)
model.cuda()
inputs = tokenizer("import torch\nimport torch.nn as nn", return_tensors="pt").to(model.device)
tokens = model.generate(
  **inputs,
  max_new_tokens=48,
  temperature=0.2,
  do_sample=True,
)
print(tokenizer.decode(tokens[0], skip_special_tokens=True))
Run with Fill in Middle (FIM) ⚡️
Click to expand
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("stabilityai/stable-code-3b")
model = AutoModelForCausalLM.from_pretrained(
  "stabilityai/stable-code-3b",
  torch_dtype="auto",
  attn_implementation="flash_attention_2",
)
model.cuda()
inputs = tokenizer("<fim_prefix>def fib(n):<fim_suffix>    else:\n        return fib(n - 2) + fib(n - 1)<fim_middle>", return_tensors="pt").to(model.device)
tokens = model.generate(
  **inputs,
  max_new_tokens=48,
  temperature=0.2,
  do_sample=True,
)
print(tokenizer.decode(tokens[0], skip_special_tokens=True))
Run with Flash Attention 2 ⚡️
Click to expand
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("stabilityai/stable-code-3b", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
  "stabilityai/stable-code-3b",
  trust_remote_code=True,
  torch_dtype="auto",
+ attn_implementation="flash_attention_2",
)
model.cuda()
inputs = tokenizer("import torch\nimport torch.nn as nn", return_tensors="pt").to(model.device)
tokens = model.generate(
  **inputs,
  max_new_tokens=48,
  temperature=0.2,
  do_sample=True,
)
print(tokenizer.decode(tokens[0], skip_special_tokens=True))
Model Details
  • Developed by : Stability AI
  • Model type : stable-code-3b models are auto-regressive language models based on the transformer decoder architecture.
  • Language(s) : English, Code
  • Library : GPT-NeoX
  • License : Stability AI Community License.
  • Commercial License : to use this model commercially, please refer to https://stability.ai/license
  • Contact : For questions and comments about the model, please email [email protected]
Model Architecture

The model is a decoder-only transformer similar to the LLaMA ( Touvron et al., 2023 ) architecture with the following modifications:

Parameters Hidden Size Layers Heads Sequence Length
2,796,431,360 2560 32 32 16384
  • Position Embeddings : Rotary Position Embeddings ( Su et al., 2021 ) applied to the first 25% of head embedding dimensions for improved throughput following Black et al. (2022) .
  • Tokenizer : We use a modified version of the GPTNeoX Tokenizer. NeoX . We add special tokens to train for Fill in the Middle (FIM) capabilities like <FIM_PREFIX> and <FIM_SUFFIX> along with other special tokens.
Training
Training Dataset

The dataset is comprised of a filtered mixture of open-source large-scale datasets available on the HuggingFace Hub : Falcon RefinedWeb extract ( Penedo et al., 2023 ), along with CommitPackFT and Github Issues (BigCode., 2023), and StarCoder ( Li et al., 2023 ). We further supplement our training with data from mathematical domains ( Azerbayev, Zhangir, et al., 2023 and, Yu, Longhui, et al., 2023 ).

Top 18 programming languages trained on:

  • C
  • CPP
  • Java
  • JavaScript
  • CSS
  • Go
  • HTML
  • Ruby
  • Rust
  • Markdown
  • Shell
  • Php
  • Sql
  • R
  • Typescript
  • Python
  • Jupyter-Clean
  • RestructuredText
Training Procedure

The model is pre-trained on the aforementioned datasets in bfloat16 precision, optimized with AdamW.

Training Infrastructure
  • Hardware : stable-code-3b was trained on the Stability AI cluster across 256 NVIDIA A100 40GB GPUs (AWS P4d instances).

  • Software : We use a fork of gpt-neox ( EleutherAI, 2021 ), train under 2D parallelism (Data and Tensor Parallel) with ZeRO-1 ( Rajbhandari et al., 2019 ), and rely on flash-attention as well as SwiGLU and Rotary Embedding kernels from FlashAttention-2 ( Dao et al., 2023 )

Use and Limitations
Intended Use

The model is intended to be used as a foundational base model for application-specific fine-tuning. Developers must evaluate and fine-tune the model for safe performance in downstream applications. For commercial use, please refer to https://stability.ai/license .

Limitations and Bias

​ As a base model, this model may exhibit unreliable, unsafe, or other undesirable behaviors that must be corrected through evaluation and fine-tuning prior to deployment. The pre-training dataset may have contained offensive or inappropriate content, even after applying data cleansing filters, which can be reflected in the model-generated text. We recommend that users exercise caution when using these models in production systems. Do not use the models if they are unsuitable for your application, or for any applications that may cause deliberate or unintentional harm to others.

How to Cite
@misc{stable-code-3b,
      url={[https://huggingface.co/stabilityai/stable-code-3b](https://huggingface.co/stabilityai/stable-code-3b)},
      title={Stable Code 3B},
      author={Pinnaparaju, Nikhil and Adithyan, Reshinth and Phung, Duy and Tow, Jonathan and Baicoianu, James and Cooper, Nathan}
}

Runs of stabilityai stable-code-3b on huggingface.co

5.4K
Total runs
0
24-hour runs
141
3-day runs
616
7-day runs
-2.3K
30-day runs

More Information About stable-code-3b huggingface.co Model

More stable-code-3b license Visit here:

https://choosealicense.com/licenses/other

stable-code-3b huggingface.co

stable-code-3b huggingface.co is an AI model on huggingface.co that provides stable-code-3b's model effect (), which can be used instantly with this stabilityai stable-code-3b model. huggingface.co supports a free trial of the stable-code-3b model, and also provides paid use of the stable-code-3b. Support call stable-code-3b model through api, including Node.js, Python, http.

stabilityai stable-code-3b online free

stable-code-3b huggingface.co is an online trial and call api platform, which integrates stable-code-3b's modeling effects, including api services, and provides a free online trial of stable-code-3b, you can try stable-code-3b online for free by clicking the link below.

stabilityai stable-code-3b online free url in huggingface.co:

https://huggingface.co/stabilityai/stable-code-3b

stable-code-3b install

stable-code-3b is an open source model from GitHub that offers a free installation service, and any user can find stable-code-3b on GitHub to install. At the same time, huggingface.co provides the effect of stable-code-3b install, users can directly use stable-code-3b installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

stable-code-3b install url in huggingface.co:

https://huggingface.co/stabilityai/stable-code-3b

Url of stable-code-3b

stable-code-3b huggingface.co Url

Provider of stable-code-3b huggingface.co

stabilityai
ORGANIZATIONS

Other API from stabilityai

huggingface.co

Total runs: 417.3K
Run Growth: -63.8K
Growth Rate: -15.97%
Updated: July 10 2024
huggingface.co

Total runs: 143.2K
Run Growth: 7.6K
Growth Rate: 5.33%
Updated: August 04 2023
huggingface.co

Total runs: 137.2K
Run Growth: 23.3K
Growth Rate: 16.83%
Updated: July 10 2024
huggingface.co

Total runs: 34.3K
Run Growth: 3.5K
Growth Rate: 10.14%
Updated: August 09 2024
huggingface.co

Total runs: 378
Run Growth: -98.0K
Growth Rate: -25246.65%
Updated: August 03 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated: July 10 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated: April 14 2024