Text Generation
Safetensors
PyTorch
English
qwen2
unsloth
qwen
qwen2.5
math
reasoning
alpaca
custom-finetune
lora-merged
Instructions to use Xerv-AI/Ada with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use Xerv-AI/Ada 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 Xerv-AI/Ada 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 Xerv-AI/Ada to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Xerv-AI/Ada to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Xerv-AI/Ada", max_seq_length=2048, )
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,6 +24,14 @@ inference:
|
|
| 24 |
temperature: 0.5
|
| 25 |
examples:
|
| 26 |
- text: "### Instruction:\nProvide a step-by-step logical proof finding the eigenvalues of the matrix [[2, 1], [1, 2]].\n### Response:\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
---
|
| 28 |
|
| 29 |
|
|
|
|
| 24 |
temperature: 0.5
|
| 25 |
examples:
|
| 26 |
- text: "### Instruction:\nProvide a step-by-step logical proof finding the eigenvalues of the matrix [[2, 1], [1, 2]].\n### Response:\n"
|
| 27 |
+
|
| 28 |
+
widget:
|
| 29 |
+
- example_title: Fibonacci (Python)
|
| 30 |
+
messages:
|
| 31 |
+
- role: system
|
| 32 |
+
content: You are a chatbot who can help code!
|
| 33 |
+
- role: user
|
| 34 |
+
content: Write me a function to calculate the first 10 digits of the fibonacci sequence in Python and print it out to the CLI.
|
| 35 |
---
|
| 36 |
|
| 37 |
|