Instructions to use abideen/Heimer-kto-TinyLlama-1.1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use abideen/Heimer-kto-TinyLlama-1.1B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="abideen/Heimer-kto-TinyLlama-1.1B")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("abideen/Heimer-kto-TinyLlama-1.1B") model = AutoModelForCausalLM.from_pretrained("abideen/Heimer-kto-TinyLlama-1.1B") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use abideen/Heimer-kto-TinyLlama-1.1B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "abideen/Heimer-kto-TinyLlama-1.1B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abideen/Heimer-kto-TinyLlama-1.1B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/abideen/Heimer-kto-TinyLlama-1.1B
- SGLang
How to use abideen/Heimer-kto-TinyLlama-1.1B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "abideen/Heimer-kto-TinyLlama-1.1B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abideen/Heimer-kto-TinyLlama-1.1B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "abideen/Heimer-kto-TinyLlama-1.1B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abideen/Heimer-kto-TinyLlama-1.1B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use abideen/Heimer-kto-TinyLlama-1.1B with Docker Model Runner:
docker model run hf.co/abideen/Heimer-kto-TinyLlama-1.1B
Heimer-kto-TinyLlama-1.1B
WandB Experiment Tracking
Check out the experiment details in this report
π§© KTO adaptation hyperparameters
LoRA:
r=8
lora_alpha=16
lora_dropout=0.05
bias="none"
task_type="CAUSAL_LM"
target_modules=['k_proj', 'gate_proj', 'v_proj', 'up_proj', 'q_proj', 'o_proj', 'down_proj']
Training arguments:
per_device_train_batch_size=2
gradient_accumulation_steps=4
gradient_checkpointing=True
learning_rate=5e-5
lr_scheduler_type="cosine"
max_steps=50
optim="paged_adamw_32bit"
warmup_steps=10
DPOTrainer:
beta=0.1
max_prompt_length=1024
max_length=1536
loss="kto_pairs"
π» Usage
Here's a Colab notebook to run Heimer-TinyLLama-1.1B in 4-bit precision on a free T4 GPU.
!pip install -qU transformers accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "abideen/Heimer-dpo-TinyLlama-1.1B"
messages = [{"role": "user", "content": "Explain what is Data science."}]
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"])
"What is Data Science? A data scientist is an individual who has a passion for data and knowledge of the technology that can be used to help make sense of data. Data scientists are often involved in the development of new software and software platforms, as well as analyzing and interpreting data. What are the Important components of Data Science?
- Data: The data is the most important component of a data science project. Data science is the application of data science to make sense of data. Data scientists usually work with data, but data scientists are not necessarily data scientists.
- Analysis: This is the process of taking data and turning it into something useful.
- Modeling: The use of machine learning and statistical techniques.
- Prediction: The prediction of a future event, such as the future market share of a product or the future population of an area.
- Visualization: Displaying the data in a graphical or interactive format.
- Statistics: The use of statistical analysis techniques. What are the Advantages of Data Science? Data science is the application of data science to make sense of data."
- Downloads last month
- 6

