Rename README.md to Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready)
Browse files# 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))
|
@@ -8,12 +8,18 @@ datasets:
|
|
| 8 |
language:
|
| 9 |
- en
|
| 10 |
widget:
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
<div align="center">
|
| 19 |
|
|
|
|
| 8 |
language:
|
| 9 |
- en
|
| 10 |
widget:
|
| 11 |
+
- example_title: Fibonacci (Python)
|
| 12 |
+
messages:
|
| 13 |
+
- role: system
|
| 14 |
+
content: You are a chatbot who can help code!
|
| 15 |
+
- role: user
|
| 16 |
+
content: >-
|
| 17 |
+
Write me a function to calculate the first 10 digits of the fibonacci
|
| 18 |
+
sequence in Python and print it out to the CLI.
|
| 19 |
+
tags:
|
| 20 |
+
- >-
|
| 21 |
+
llm tinyllama causal-lm chat text-generation transformers
|
| 22 |
+
intended-use::chatbot license::apache-2.0
|
| 23 |
---
|
| 24 |
<div align="center">
|
| 25 |
|