How to use from
Unsloth Studio
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for rogersam/tinyllama-instruct-lite-v1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex
# Run unsloth studio
unsloth studio -H 0.0.0.0 -p 8888
# Then open http://localhost:8888 in your browser
# Search for rogersam/tinyllama-instruct-lite-v1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required
# Open https://huggingface.co/spaces/unsloth/studio in your browser
# Search for rogersam/tinyllama-instruct-lite-v1 to start chatting
Load model with FastModel
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
    model_name="rogersam/tinyllama-instruct-lite-v1",
    max_seq_length=2048,
)
Quick Links

TinyLlama Instruct Lite v1

πŸ“Œ Model Summary

rogersam/tinyllama-instruct-lite-v1 is a LoRA fine-tuned TinyLlama model using Unsloth.
It is designed for instruction-following tasks in English + Tamil, such as:

  • General Q&A
  • Summarization
  • Basic math & reasoning
  • English ↔ Tamil translation

This project demonstrates how a lightweight 1B model can be adapted for multiple domains with limited resources.


πŸ”Ž Model Details

  • Developed by: Roger Samuel J (Hugging Face Profile)
  • Model type: Causal LM (decoder-only)
  • Languages: English, Tamil
  • License: Same as base model (TinyLlama)
  • Fine-tuned from: unsloth/tinyllama-bnb-4bit
  • Method: LoRA via PEFT + Unsloth

πŸ“‚ Model Sources


πŸ’‘ Uses

Direct Use

  • Running lightweight instruction tasks on CPU/GPU
  • Translating English ↔ Tamil sentences
  • Answering short questions and reasoning queries
  • Summarizing small texts

Out-of-Scope

  • Sensitive decision-making (finance, healthcare, law)
  • Long context generation (>512 tokens)
  • Production-grade chatbots

⚠️ Bias, Risks & Limitations

  • Small dataset β†’ may hallucinate facts
  • Not aligned for safety or toxicity filtering
  • Limited Tamil coverage (basic sentences only)

Recommendation: Use for demo & educational purposes only.


πŸš€ How to Get Started

from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline

model_id = "rogersam/tinyllama-instruct-lite-v1"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")

pipe = pipeline("text-generation", model=model, tokenizer=tokenizer)

prompt = "Translate English to Tamil: How are you?"
print(pipe(prompt, max_new_tokens=50)[0]["generated_text"])
Downloads last month
4
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for rogersam/tinyllama-instruct-lite-v1

Adapter
(38)
this model