Instructions to use Sweaterdog/Andy-3.5-beta with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Sweaterdog/Andy-3.5-beta with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Sweaterdog/Andy-3.5-beta", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Sweaterdog/Andy-3.5-beta with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Sweaterdog/Andy-3.5-beta:F16 # Run inference directly in the terminal: llama cli -hf Sweaterdog/Andy-3.5-beta:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Sweaterdog/Andy-3.5-beta:F16 # Run inference directly in the terminal: llama cli -hf Sweaterdog/Andy-3.5-beta:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Sweaterdog/Andy-3.5-beta:F16 # Run inference directly in the terminal: ./llama-cli -hf Sweaterdog/Andy-3.5-beta:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Sweaterdog/Andy-3.5-beta:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Sweaterdog/Andy-3.5-beta:F16
Use Docker
docker model run hf.co/Sweaterdog/Andy-3.5-beta:F16
- LM Studio
- Jan
- Ollama
How to use Sweaterdog/Andy-3.5-beta with Ollama:
ollama run hf.co/Sweaterdog/Andy-3.5-beta:F16
- Unsloth Desktop
- Docker Model Runner
How to use Sweaterdog/Andy-3.5-beta with Docker Model Runner:
docker model run hf.co/Sweaterdog/Andy-3.5-beta:F16
- Lemonade
How to use Sweaterdog/Andy-3.5-beta with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Sweaterdog/Andy-3.5-beta:F16
Run and chat with the model
lemonade run user.Andy-3.5-beta-F16
List all available models
lemonade list
- Atomic Chat
(Trained with Unsloth)
Browse files
Modelfile
CHANGED
|
@@ -1,30 +1,13 @@
|
|
| 1 |
-
FROM /content/Sweaterdog/Andy-v3.5-Beta/unsloth.F16.gguf
|
| 2 |
-
|
| 3 |
-
TEMPLATE """Below describes inputs and actions from the popular game minecraft.
|
| 4 |
-
Based on the inputs, choose an appropriate response.
|
| 5 |
-
Follow the directions of the system prompt closely.{{ if .Prompt }}
|
| 6 |
-
>>> Chat details:
|
| 7 |
-
{{ .Prompt }}{{ end }}
|
| 8 |
-
>>> What do you do? (One response):
|
| 9 |
-
{{ .Response }}<|endoftext|>"""
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
PARAMETER stop "<|im_start|>"
|
| 14 |
-
PARAMETER stop "<|PAD_TOKEN|>"
|
| 15 |
-
PARAMETER stop "<|video_pad|>"
|
| 16 |
PARAMETER stop "<|im_end|>"
|
| 17 |
-
PARAMETER stop "<tool_call>"
|
| 18 |
-
PARAMETER stop "<|quad_end|>"
|
| 19 |
-
PARAMETER stop "<|object_ref_start|>"
|
| 20 |
-
PARAMETER stop "</tool_call>"
|
| 21 |
-
PARAMETER stop "<|file_sep|>"
|
| 22 |
-
PARAMETER stop "<|image_pad|>"
|
| 23 |
-
PARAMETER stop "<|box_start|>"
|
| 24 |
-
PARAMETER stop "<|repo_name|>"
|
| 25 |
-
PARAMETER stop "<|box_end|>"
|
| 26 |
-
PARAMETER stop "<|endoftext|>"
|
| 27 |
-
PARAMETER stop "<|vision_"
|
| 28 |
-
PARAMETER stop "<|fim_"
|
| 29 |
PARAMETER temperature 1.5
|
| 30 |
PARAMETER min_p 0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
+
FROM /content/Sweaterdog/Andy-v3.5-Beta/unsloth.F16.gguf
|
| 3 |
+
TEMPLATE """{{ if .System }}<|im_start|>system
|
| 4 |
+
{{ .System }}<|im_end|>
|
| 5 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
| 6 |
+
{{ .Prompt }}<|im_end|>
|
| 7 |
+
{{ end }}<|im_start|>assistant
|
| 8 |
+
{{ .Response }}<|im_end|>
|
| 9 |
+
"""
|
| 10 |
PARAMETER stop "<|im_start|>"
|
|
|
|
|
|
|
| 11 |
PARAMETER stop "<|im_end|>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
PARAMETER temperature 1.5
|
| 13 |
PARAMETER min_p 0.1
|