Instructions to use rx-dev/synth-2-split-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use rx-dev/synth-2-split-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="rx-dev/synth-2-split-gguf", filename="gemmasutra-small-00001-of-00005.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use rx-dev/synth-2-split-gguf 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 rx-dev/synth-2-split-gguf # Run inference directly in the terminal: llama cli -hf rx-dev/synth-2-split-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf rx-dev/synth-2-split-gguf # Run inference directly in the terminal: llama cli -hf rx-dev/synth-2-split-gguf
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 rx-dev/synth-2-split-gguf # Run inference directly in the terminal: ./llama-cli -hf rx-dev/synth-2-split-gguf
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 rx-dev/synth-2-split-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf rx-dev/synth-2-split-gguf
Use Docker
docker model run hf.co/rx-dev/synth-2-split-gguf
- LM Studio
- Jan
- Ollama
How to use rx-dev/synth-2-split-gguf with Ollama:
ollama run hf.co/rx-dev/synth-2-split-gguf
- Unsloth Studio
How to use rx-dev/synth-2-split-gguf 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 rx-dev/synth-2-split-gguf 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 rx-dev/synth-2-split-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for rx-dev/synth-2-split-gguf to start chatting
- Pi
How to use rx-dev/synth-2-split-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rx-dev/synth-2-split-gguf
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "rx-dev/synth-2-split-gguf" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use rx-dev/synth-2-split-gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rx-dev/synth-2-split-gguf
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default rx-dev/synth-2-split-gguf
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use rx-dev/synth-2-split-gguf with Docker Model Runner:
docker model run hf.co/rx-dev/synth-2-split-gguf
- Lemonade
How to use rx-dev/synth-2-split-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull rx-dev/synth-2-split-gguf
Run and chat with the model
lemonade run user.synth-2-split-gguf-{{QUANT_TAG}}List all available models
lemonade list
Upload split GGUF files
Browse files
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
gemmasutra-small-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
gemmasutra-small-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
gemmasutra-small-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
gemmasutra-small-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
gemmasutra-small-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
gemmasutra-small-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e5c2fe298f3ae0b43ae99e7d28800cc9ca5d55ceeb93ae3df345e0860326ddc
|
| 3 |
+
size 516676704
|
gemmasutra-small-00002-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a10fe61bdb8594ae4ceb821ae9a0663bc36e6838057f34351b324612becc8a7
|
| 3 |
+
size 504396384
|
gemmasutra-small-00003-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd9707991bfad8d21e204d37588a068cffdebf648ea2df2d39d8b2985f57b483
|
| 3 |
+
size 511041664
|
gemmasutra-small-00004-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae9661136a7bf2ff153745f5ad845fd75f807e9def55871355c5ec819c758f31
|
| 3 |
+
size 511031360
|
gemmasutra-small-00005-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3198588025f02032111d66382e53f0e3c9b4ccfdc5339c2acb6c182ab3500b9
|
| 3 |
+
size 454135424
|