Instructions to use mradermacher/PyroNet-v1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/PyroNet-v1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/PyroNet-v1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/PyroNet-v1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/PyroNet-v1-GGUF", filename="PyroNet-v1.IQ4_XS.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 mradermacher/PyroNet-v1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/PyroNet-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/PyroNet-v1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/PyroNet-v1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/PyroNet-v1-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/PyroNet-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/PyroNet-v1-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/PyroNet-v1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/PyroNet-v1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/PyroNet-v1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/PyroNet-v1-GGUF with Ollama:
ollama run hf.co/mradermacher/PyroNet-v1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/PyroNet-v1-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/PyroNet-v1-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/PyroNet-v1-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/PyroNet-v1-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/PyroNet-v1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/PyroNet-v1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/PyroNet-v1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/PyroNet-v1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.PyroNet-v1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- PyroNet-v1.IQ4_XS.gguf +3 -0
- PyroNet-v1.Q2_K.gguf +3 -0
- PyroNet-v1.Q3_K_L.gguf +3 -0
- PyroNet-v1.Q3_K_M.gguf +3 -0
- PyroNet-v1.Q3_K_S.gguf +3 -0
- PyroNet-v1.Q4_K_M.gguf +3 -0
- PyroNet-v1.Q4_K_S.gguf +3 -0
- PyroNet-v1.Q5_K_M.gguf +3 -0
- PyroNet-v1.Q5_K_S.gguf +3 -0
- PyroNet-v1.Q6_K.gguf +3 -0
- PyroNet-v1.Q8_0.gguf +3 -0
- PyroNet-v1.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 |
+
PyroNet-v1.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
PyroNet-v1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
PyroNet-v1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
PyroNet-v1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
PyroNet-v1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
PyroNet-v1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
PyroNet-v1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
PyroNet-v1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
PyroNet-v1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
PyroNet-v1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
PyroNet-v1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
PyroNet-v1.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
PyroNet-v1.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7ca3a6e237b54f143fc4bac7541f1e794a4542fec89305bcdc39abddc799e0c
|
| 3 |
+
size 795508224
|
PyroNet-v1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:066c19f419e9c690c3673ddb14e73c6d35ad6f47b3ff9d43cf763118ecbb6b0a
|
| 3 |
+
size 582319616
|
PyroNet-v1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:881a5060699865ab87e0873e45b56fd73c26699cbbd5dc184d023730980c56b4
|
| 3 |
+
size 810024448
|
PyroNet-v1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0abe0f339f65984c6daa16679f669902077343ecd0e17f170cb995f14b4a9717
|
| 3 |
+
size 737672704
|
PyroNet-v1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b376f60c10c34f739bee976ca6b57257c866d2e41c93e7bcd43fb9c14b22381
|
| 3 |
+
size 654310912
|
PyroNet-v1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c67cac637bb83e717e0d5d2f46e4457e8cf7ccfc43e1c226d6c95c56b0d9f4f3
|
| 3 |
+
size 893550080
|
PyroNet-v1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:683c7b3ca155a2bdd24dfb7068999b608a09ae889c86c80d849584f219c7d2b9
|
| 3 |
+
size 837058048
|
PyroNet-v1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:681e20523f89a8ddbba38e9181694e8db6ade96cca12cf6d68c7e4a3eb3d52df
|
| 3 |
+
size 1026194944
|
PyroNet-v1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f94b09fd299f2216f900bf7d0429de2424d46eb5bf79426c305ef65134f76eb
|
| 3 |
+
size 992771584
|
PyroNet-v1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8030a63bf0f1abf08c968a189f61d0b3933940277c8396ce726de2d71261e6d
|
| 3 |
+
size 1167130112
|
PyroNet-v1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79e6111f609a74a27da9b0f7425f53cd822007ca455202a3f453c2a7ed4cebaf
|
| 3 |
+
size 1510473216
|
PyroNet-v1.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4116972110e1f3f068ff6fe5cd8c35b54632f68b687de6541c442c132bd788fe
|
| 3 |
+
size 2839543296
|