Granite-8B-Code-Base
is a decoder-only code model designed for code generative tasks (e.g., code generation, code explanation, code fixing, etc.). It is trained from scratch with a two-phase training strategy. In phase 1, our model is trained on 4 trillion tokens sourced from 116 programming languages, ensuring a comprehensive understanding of programming languages and syntax. In phase 2, our model is trained on 500 billion tokens with a carefully designed mixture of high-quality data from code and natural language domains to improve the models’ ability to reason and follow instructions.
Prominent enterprise use cases of LLMs in software engineering productivity include code generation, code explanation, code fixing, generating unit tests, generating documentation, addressing technical debt issues, vulnerability detection, code translation, and more. All Granite Code Base models, including the
8B parameter model
, are able to handle these tasks as they were trained on a large amount of code data from 116 programming languages.
Generation
This is a simple example of how to use
Granite-8B-Code-Base
model.
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda"# or "cpu"
model_path = "ibm-granite/granite-8b-code-base"
tokenizer = AutoTokenizer.from_pretrained(model_path)
# drop device_map if running on CPU
model = AutoModelForCausalLM.from_pretrained(model_path, device_map=device)
model.eval()
# change input text as desired
input_text = "def generate():"# tokenize the text
input_tokens = tokenizer(input_text, return_tensors="pt")
# transfer tokenized inputs to the devicefor i in input_tokens:
input_tokens[i] = input_tokens[i].to(device)
# generate output tokens
output = model.generate(**input_tokens)
# decode output tokens into text
output = tokenizer.batch_decode(output)
# loop over the batch to print, in this example the batch size is 1for i in output:
print(i)
Training Data
Data Collection and Filtering:
Pretraining code data is sourced from a combination of publicly available datasets (e.g.,
GitHub Code Clean
,
Starcoder data
), and additional public code repositories and issues from GitHub. We filter raw data to retain a list of 116 programming languages. After language filtering, we also filter out low-quality code.
Exact and Fuzzy Deduplication:
We adopt an aggressive deduplication strategy that includes both exact and fuzzy deduplication to remove documents having (near) identical code content.
HAP, PII, Malware Filtering:
We apply a HAP content filter that reduces models' likelihood of generating hateful, abusive, or profane language. We also make sure to redact Personally Identifiable Information (PII) by replacing PII content (e.g., names, email addresses, keys, passwords) with corresponding tokens (e.g., ⟨NAME⟩, ⟨EMAIL⟩, ⟨KEY⟩, ⟨PASSWORD⟩). Moreover, we scan all datasets using
ClamAV
to identify and remove instances of malware in the source code.
Natural Language Datasets:
In addition to collecting code data for model training, we curate several publicly available high-quality natural language datasets to improve models' proficiency in language understanding and mathematical reasoning. Unlike the code data, we do not deduplicate these datasets.
Infrastructure
We train the Granite Code models using two of IBM's super computing clusters, namely Vela and Blue Vela, both outfitted with NVIDIA A100 and H100 GPUs respectively. These clusters provide a scalable and efficient infrastructure for training our models over thousands of GPUs.
Ethical Considerations and Limitations
The use of Large Language Models involves risks and ethical considerations people must be aware of. Regarding code generation, caution is urged against complete reliance on specific code models for crucial decisions or impactful information as the generated code is not guaranteed to work as intended.
Granite-8B-Code-Base
model is not the exception in this regard. Even though this model is suited for multiple code-related tasks, it has not undergone any safety alignment, there it may produce problematic outputs. Additionally, it remains uncertain whether smaller models might exhibit increased susceptibility to hallucination in generation scenarios by copying source code verbatim from the training dataset due to their reduced sizes and memorization capacities. This aspect is currently an active area of research, and we anticipate more rigorous exploration, comprehension, and mitigations in this domain. Regarding ethics, a latent risk associated with all Large Language Models is their malicious utilization. We urge the community to use
Granite-8B-Code-Base
model with ethical intentions and in a responsible way.
Runs of ibm-granite granite-8b-code-base on huggingface.co
5.3K
Total runs
0
24-hour runs
0
3-day runs
0
7-day runs
0
30-day runs
More Information About granite-8b-code-base huggingface.co Model
granite-8b-code-base huggingface.co is an AI model on huggingface.co that provides granite-8b-code-base's model effect (), which can be used instantly with this ibm-granite granite-8b-code-base model. huggingface.co supports a free trial of the granite-8b-code-base model, and also provides paid use of the granite-8b-code-base. Support call granite-8b-code-base model through api, including Node.js, Python, http.
granite-8b-code-base huggingface.co is an online trial and call api platform, which integrates granite-8b-code-base's modeling effects, including api services, and provides a free online trial of granite-8b-code-base, you can try granite-8b-code-base online for free by clicking the link below.
ibm-granite granite-8b-code-base online free url in huggingface.co:
granite-8b-code-base is an open source model from GitHub that offers a free installation service, and any user can find granite-8b-code-base on GitHub to install. At the same time, huggingface.co provides the effect of granite-8b-code-base install, users can directly use granite-8b-code-base installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
granite-8b-code-base install url in huggingface.co: