Tara 1.1 1M SFT is a tiny educational assistant model packed for Hugging Face. It is a 1M-class GPT-style causal language model trained as a compact learning version in the Tara family, inspired by the larger
aungkomyint/tara10m-sft-v1-2k project.
This release intentionally reduces the scale from the 10.4M Tara10M SFT model to an 865K-parameter GPT-2-compatible model so it can be trained, inspected, shipped, and loaded easily on modest hardware.
This is a school/learning project model. It is not a production assistant.
The reference Tara10M model is a 10.4M-parameter Llama-style Burmese-English SFT model with a 16K SentencePiece vocabulary and 1,024-token context. Tara 1.1 is not the same architecture and is not a drop-in replacement for Tara10M.
Lower is better.
1User: What is SFT?
2Assistant:
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "aungkomyint/tara1.1"
4
5tokenizer = AutoTokenizer.from_pretrained(repo_id)
6model = AutoModelForCausalLM.from_pretrained(repo_id)
7
8prompt = "User: What is SFT?\nAssistant:"
9inputs = tokenizer(prompt, return_tensors="pt")
10outputs = model.generate(
11 **inputs,
12 max_new_tokens=80,
13 do_sample=False,
14 pad_token_id=tokenizer.pad_token_id or tokenizer.eos_token_id,
15)
16
17print(tokenizer.decode(outputs[0], skip_special_tokens=True))
1from transformers import pipeline
2
3pipe = pipeline("text-generation", model="./tara1.1-hf")
4print(pipe("User: What is Tara 1M?\nAssistant:", max_new_tokens=80)[0]["generated_text"])
1User: What is SFT?
2Assistant:
1User: How do I improve the model?
2Assistant:
This model is intentionally tiny and should be treated as an experiment.