From ad3a4542e559d32c21848c06c38b5e6c3e44b9f3 Mon Sep 17 00:00:00 2001 From: Boitshoko Norman Sesoko Date: Fri, 27 Jun 2025 16:31:48 +0000 Subject: [PATCH] =?UTF-8?q?Rename=20README.md=20to=20Orbital-AI=20?= =?UTF-8?q?=E2=80=94=20TinyLLaMA=201.1B=20Chat=20(Fine-Tune=20Ready)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Orbital-AI (TinyLLaMA 1.1B Chat v1.0) 🚀 This is a duplicated version of [TinyLLaMA-1.1B-Chat-v1.0](https://huggingface.co/cognitivecomputations/TinyLlama-1.1B-Chat-v1.0), hosted by [PlanetX95](https://huggingface.co/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 ```python 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)) --- ...-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready) | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) rename README.md => Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready) (88%) diff --git a/README.md b/Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready) similarity index 88% rename from README.md rename to Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready) index 9737c9c..f3f3af1 100644 --- a/README.md +++ b/Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready) @@ -8,12 +8,18 @@ datasets: language: - en widget: - - example_title: Fibonacci (Python) - messages: - - role: system - content: You are a chatbot who can help code! - - role: user - content: Write me a function to calculate the first 10 digits of the fibonacci sequence in Python and print it out to the CLI. +- example_title: Fibonacci (Python) + messages: + - role: system + content: You are a chatbot who can help code! + - role: user + content: >- + Write me a function to calculate the first 10 digits of the fibonacci + sequence in Python and print it out to the CLI. +tags: +- >- + llm tinyllama causal-lm chat text-generation transformers + intended-use::chatbot license::apache-2.0 ---