Rename README.md to Orbital-AI — TinyLLaMA 1.1B Chat (Fine-Tune Ready)
# 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))
This commit is contained in:
parent
fe8a4ea1ff
commit
ad3a4542e5
@ -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
|
||||
---
|
||||
<div align="center">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user