granite-8b-qiskit
Model Summary
granite-8b-qiskit is a 8B parameter model extend pretrained and fine tuned on top of granite-8b-code-base using Qiskit code and instruction data to improve capabilities at writing high-quality and non-deprecated Qiskit code. We used only data with the following licenses: Apache 2.0, MIT, the Unlicense, Mulan PSL Version 2, BSD-2, BSD-3, and Creative Commons Attribution 4.0.
- Developers: IBM Quantum & IBM Research
- Related Papers: Qiskit Code Assistant: Training LLMs for generating Quantum Computing Code and Qiskit HumanEval: An Evaluation Benchmark For Quantum Code Generative Models
- Release Date: November 12th, 2024
- License: apache-2.0
Usage
Intended use
This model is designed for generating quantum computing code using Qiskit. Both quantum computing practitionners and new Qiskit users can use this model as an assistant for building Qiskit code or responding to Qiskit coding related instructions and questions.
Generation
This is a simple example of how to use granite-8b-qiskit model.
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda" # or "cpu"
model_path = "qiskit/granite-8b-qiskit"
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
chat = [
{ "role": "user", "content": "Build a random circuit with 5 qubits" },
]
chat = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=True)
# tokenize the text
input_tokens = tokenizer(input_text, return_tensors="pt")
# move tokenized inputs to device
for i in input_tokens:
input_tokens[i] = input_tokens[i].to(device)
# generate output tokens
output = model.generate(**input_tokens, max_new_tokens=128)
# decode output tokens into text
output = tokenizer.batch_decode(output)
# loop over the batch to print, in this example the batch size is 1
for i in output:
print(i)
Training Data
- Data Collection and Filtering: Our code data is sourced from a combination of publicly available datasets (e.g., Code available on https://github.com), and additional synthetic data generated at IBM Quantum. We exclude code that is older than 2023.
- Exact and Fuzzy Deduplication: We use both exact and fuzzy deduplication to remove documents having (near) identical code content.
- HAP, PII, Malware Filtering: We rely on the base model ibm-granite/granite-8b-code-base for HAP and malware filtering from the initial datasets used in the context of the base model. We also make sure to redact Personally Identifiable Information (PII) in our datasets by replacing PII content (e.g., names, email addresses, keys, passwords) with corresponding tokens (e.g., ⟨NAME⟩, ⟨EMAIL⟩, ⟨KEY⟩, ⟨PASSWORD⟩).
Infrastructure
We trained granite-8b-qiskit using IBM's super computing cluster (Vela) using NVIDIA A100 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-qiskit 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-qiskit model with ethical intentions and in a responsible way.
- Downloads last month
- 5
Evaluation results
- pass@1 on Qiskit HumanEvalself-reported45.690
- pass@1 on HumanEvalSynthesis(Python)self-reported58.530