Edit model card

Image description

Tsunemoto GGUF's of Heimer-kto-TinyLlama-1.1B

This is a GGUF quantization of Heimer-kto-TinyLlama-1.1B.

Original Repo Link:

Original Repository

Original Model Card:


Heimer-kto-TinyLlama-1.1B

image/jpeg

WandB Experiment Tracking

Check out the experiment details in this report

image/png

🧩 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?

  1. 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.
  2. Analysis: This is the process of taking data and turning it into something useful.
  3. Modeling: The use of machine learning and statistical techniques.
  4. Prediction: The prediction of a future event, such as the future market share of a product or the future population of an area.
  5. Visualization: Displaying the data in a graphical or interactive format.
  6. 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
264
GGUF
Unable to determine this model's library. Check the docs .