Qwen2 Models and Merges
Collection
roleplay+unslopped LLMs, plus Qwen2ForCasualLM -> LlamaForCasualLM conversions
•
3 items
•
Updated
Iridium is a 72B parameter language model created through a merge of Qwen2-72B-Instruct, calme2.1-72b, and magnum-72b-v1 using model_stock
.
Qwen2ForCasualLM
Custom script utilizing safetensors library.
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained("leafspark/Iridium-72B-v0.1",
device_map="auto",
torch_dtype=torch.float16)
tokenizer = AutoTokenizer.from_pretrained("leafspark/Iridium-72B-v0.1")
Find them here: leafspark/Iridium-72B-v0.1-GGUF
I found these to work well:
{
"temperature": 1
"min_p": 0.08
"top_p": 1
"top_k": 40
"repetition_penalty": 1
}