Downloads · 30 days
0
ALBADDAWI/DeepCode-7B-Aurora-v7
DeepCode-7B-Aurora-v7 is a machine learning model from ALBADDAWI. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
DeepCode-7B-Aurora-v7 is a merge of the following models using LazyMergekit: DeepCode-7B-Aurora-v4 DeepCode-7B-Aurora-v4 DeepCode-7B-Aurora-v4
Downloads · 30 days
0
Access
Public
Updated Apr 11, 2024
Repo size
—
Likes
0
Public
Click a slice to open those files.
.md2.2 KB · 59%
From the Hugging Face model README
DeepCode-7B-Aurora-v7 is a merge of the following models using LazyMergekit:
models:
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
- model: DeepCode-7B-Aurora-v4
parameters:
weight: 1
merge_method: task_arithmetic
base_model: DeepCode-7B-Aurora-v4
parameters:
normalize: true
int8_mask: true
dtype: float16
!pip install -qU transformers accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "ALBADDAWI/DeepCode-7B-Aurora-v7"
messages = [{"role": "user", "content": "What is a large language model?"}]
tokenizer = AutoTokenizer.from_pretrained(model)
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
pipeline = transformers.pipeline(
"text-generation",
model=model,
torch_dtype=torch.float16,
device_map="auto",
)
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])