Instructions to use mradermacher/Open-RS3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Open-RS3-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Open-RS3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Open-RS3-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 mradermacher/Open-RS3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Open-RS3-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/Open-RS3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Open-RS3-GGUF:Q4_K_M
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 mradermacher/Open-RS3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Open-RS3-GGUF:Q4_K_M
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 mradermacher/Open-RS3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Open-RS3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Open-RS3-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Open-RS3-GGUF with Ollama:
ollama run hf.co/mradermacher/Open-RS3-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Open-RS3-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 mradermacher/Open-RS3-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 mradermacher/Open-RS3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/Open-RS3-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/Open-RS3-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Open-RS3-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Open-RS3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Open-RS3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Open-RS3-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from rich1
Browse files- .gitattributes +12 -0
- Open-RS3.IQ4_XS.gguf +3 -0
- Open-RS3.Q2_K.gguf +3 -0
- Open-RS3.Q3_K_L.gguf +3 -0
- Open-RS3.Q3_K_M.gguf +3 -0
- Open-RS3.Q3_K_S.gguf +3 -0
- Open-RS3.Q4_K_M.gguf +3 -0
- Open-RS3.Q4_K_S.gguf +3 -0
- Open-RS3.Q5_K_M.gguf +3 -0
- Open-RS3.Q5_K_S.gguf +3 -0
- Open-RS3.Q6_K.gguf +3 -0
- Open-RS3.Q8_0.gguf +3 -0
- Open-RS3.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
Open-RS3.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Open-RS3.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Open-RS3.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Open-RS3.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Open-RS3.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Open-RS3.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Open-RS3.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Open-RS3.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Open-RS3.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Open-RS3.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Open-RS3.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Open-RS3.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Open-RS3.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdc2e9b2fc3b38461f8e76a3246ef91a6339f05d0be4cd74156693fe43bbf328
|
| 3 |
+
size 1026163488
|
Open-RS3.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b95950efc6a97905810e409bf097f333136c18a17223d3c977840bea0525643
|
| 3 |
+
size 752881440
|
Open-RS3.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c8ef708f98972b68f51ba9900e904e0bbc09933245666eaf8de82e2bc03e4c6
|
| 3 |
+
size 980441376
|
Open-RS3.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2f2a9ad10ddcb7a8e8f6692e080056b84a89d015664a52d5313c1bc0c2b5f3e
|
| 3 |
+
size 924457248
|
Open-RS3.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae04ba7bf1f061476f99242f1e028274636b5caa123f116a8d326d48d649dd4e
|
| 3 |
+
size 861223200
|
Open-RS3.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4a7ce773459a6c20791d84dab4dcb84629b43be153bf3eaaf511d89dcc78fba
|
| 3 |
+
size 1117322016
|
Open-RS3.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce85c5668c42144282066e835350b6ce559f8d370b12e183549559c9faa59f0a
|
| 3 |
+
size 1071586080
|
Open-RS3.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:053904351f01f79630eaf62df545634137eee167880c7b1bf9b4bc1be4b327e9
|
| 3 |
+
size 1285495584
|
Open-RS3.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da9d79414592bf0d0992f9539c91a1b56cf837ecb8506131aac5d92948ffc085
|
| 3 |
+
size 1259174688
|
Open-RS3.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79fcc1e0e2ff9d38b760e5da71d73083ce5aa8b564bd58352dd82db2828c437b
|
| 3 |
+
size 1464180000
|
Open-RS3.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d700c5b9ed1551b24d04dd3fabfb87e01f343a56fa80e02a1d0e3dfc87844fe
|
| 3 |
+
size 1894533408
|
Open-RS3.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec5991914d631bdf4f3f43976bdbd1bf7a490381cd4bd3a2e9d46cec7519a701
|
| 3 |
+
size 3560417568
|