Rename README.md to Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready)

#56

Orbital-AI (TinyLLaMA 1.1B Chat v1.0)

🚀 This is a duplicated version of TinyLLaMA-1.1B-Chat-v1.0, hosted by PlanetX95, as part of the Best of Both Worlds AI project.

🔍 Model Details

  • Architecture: TinyLLaMA 1.1B
  • Pretrained for: Instruction-following, chat, text generation
  • Intended use: AI chatbot platforms, lightweight assistants, mobile AI apps

🛠️ Use This Model

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "PlanetX95/Orbital-AI"

tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)

inputs = tokenizer("Who are you?", return_tensors="pt")
outputs = model.generate(**inputs, max_length=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Ready to merge
This branch is ready to get merged automatically.

Sign up or log in to comment