Transformers
Safetensors
English
function calling
tool use
llama
llama3
tinyllama
instruct-tuned
4-bit quantization
ggfu
text-generation-inference
unsloth
trl
Instructions to use unclecode/tinyllama-function-call-lora-adapter-250424 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unclecode/tinyllama-function-call-lora-adapter-250424 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("unclecode/tinyllama-function-call-lora-adapter-250424", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Unsloth Studio new
How to use unclecode/tinyllama-function-call-lora-adapter-250424 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for unclecode/tinyllama-function-call-lora-adapter-250424 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for unclecode/tinyllama-function-call-lora-adapter-250424 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unclecode/tinyllama-function-call-lora-adapter-250424 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="unclecode/tinyllama-function-call-lora-adapter-250424", max_seq_length=2048, )
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,16 +3,6 @@ language:
|
|
| 3 |
- en
|
| 4 |
license: apache-2.0
|
| 5 |
tags:
|
| 6 |
-
- text-generation-inference
|
| 7 |
-
- transformers
|
| 8 |
-
- unsloth
|
| 9 |
-
- llama
|
| 10 |
-
- trl
|
| 11 |
-
base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
|
| 12 |
-
---
|
| 13 |
-
|
| 14 |
-
---
|
| 15 |
-
tags:
|
| 16 |
- function calling
|
| 17 |
- tool use
|
| 18 |
- llama
|
|
@@ -21,7 +11,12 @@ tags:
|
|
| 21 |
- instruct-tuned
|
| 22 |
- 4-bit quantization
|
| 23 |
- ggfu
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
---
|
| 26 |
|
| 27 |
# Function Calling and Tool Use LLaMA Models
|
|
|
|
| 3 |
- en
|
| 4 |
license: apache-2.0
|
| 5 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- function calling
|
| 7 |
- tool use
|
| 8 |
- llama
|
|
|
|
| 11 |
- instruct-tuned
|
| 12 |
- 4-bit quantization
|
| 13 |
- ggfu
|
| 14 |
+
- text-generation-inference
|
| 15 |
+
- transformers
|
| 16 |
+
- unsloth
|
| 17 |
+
- llama
|
| 18 |
+
- trl
|
| 19 |
+
base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
|
| 20 |
---
|
| 21 |
|
| 22 |
# Function Calling and Tool Use LLaMA Models
|