How to use from the
Use from the
Transformers library
# Gated model: Login with a HF token with gated access permission
hf auth login
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="hvbhanot/slim-7b")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("hvbhanot/slim-7b")
model = AutoModelForCausalLM.from_pretrained("hvbhanot/slim-7b", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Model Description:

SLiM-7b is a fine-tuned version of the Qwen2.5-Coder-7B-Instruct model, specialized in generating and understanding SLiM/Eidos code for evolutionary simulations. Trained efficiently using QLoRA on a curated dataset of SLiM recipes, code examples, and synthetic scenarios, this model serves as an expert AI assistant for evolutionary biologists. It excels at generating functional SLiM code from natural language prompts, completing partial code, explaining complex simulation concepts, and assisting in modifying existing models. This enables users to quickly develop, debug, and understand simulations involving population genetics, selection, mutation, recombination, spatial structures, and tree-sequence recording. Like all large language models, it may occasionally generate imperfect code or explanations, so verification is always recommended.

Downloads last month
-
Safetensors
Model size
8B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for hvbhanot/slim-7b

Base model

Qwen/Qwen2.5-7B
Finetuned
(425)
this model