Instructions to use mradermacher/SikuRoBERTa_Bronze-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/SikuRoBERTa_Bronze-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/SikuRoBERTa_Bronze-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/SikuRoBERTa_Bronze-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/SikuRoBERTa_Bronze-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/SikuRoBERTa_Bronze-GGUF with Ollama:
ollama run hf.co/mradermacher/SikuRoBERTa_Bronze-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-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/SikuRoBERTa_Bronze-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/SikuRoBERTa_Bronze-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/SikuRoBERTa_Bronze-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/SikuRoBERTa_Bronze-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/SikuRoBERTa_Bronze-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.SikuRoBERTa_Bronze-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- SikuRoBERTa_Bronze.IQ4_XS.gguf +3 -0
- SikuRoBERTa_Bronze.Q2_K.gguf +3 -0
- SikuRoBERTa_Bronze.Q3_K_L.gguf +3 -0
- SikuRoBERTa_Bronze.Q3_K_M.gguf +3 -0
- SikuRoBERTa_Bronze.Q3_K_S.gguf +3 -0
- SikuRoBERTa_Bronze.Q4_K_M.gguf +3 -0
- SikuRoBERTa_Bronze.Q4_K_S.gguf +3 -0
- SikuRoBERTa_Bronze.Q5_K_M.gguf +3 -0
- SikuRoBERTa_Bronze.Q5_K_S.gguf +3 -0
- SikuRoBERTa_Bronze.Q6_K.gguf +3 -0
- SikuRoBERTa_Bronze.Q8_0.gguf +3 -0
- SikuRoBERTa_Bronze.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 |
+
SikuRoBERTa_Bronze.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
SikuRoBERTa_Bronze.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
SikuRoBERTa_Bronze.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
SikuRoBERTa_Bronze.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
SikuRoBERTa_Bronze.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
SikuRoBERTa_Bronze.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
SikuRoBERTa_Bronze.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
SikuRoBERTa_Bronze.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
SikuRoBERTa_Bronze.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
SikuRoBERTa_Bronze.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
SikuRoBERTa_Bronze.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
SikuRoBERTa_Bronze.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
SikuRoBERTa_Bronze.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46a1fd3e6658f7000c440e04e4703783990e5e62f9e998c712fb53b1e540145e
|
| 3 |
+
size 67111552
|
SikuRoBERTa_Bronze.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3895698aadb6021935aa3136b8e8588daa9ce6fab6f1ca782a5842ae2f0b2f15
|
| 3 |
+
size 53803648
|
SikuRoBERTa_Bronze.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15d0b7c4fb5e7964b22989d15954691f2e80050e3758d98f7d9c642d33576572
|
| 3 |
+
size 69065344
|
SikuRoBERTa_Bronze.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad44f19685b939ea4f70a8aaf00905eacb9ac992925877d2d0132be9d362c1b6
|
| 3 |
+
size 63904384
|
SikuRoBERTa_Bronze.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b55ab7d902889c2c9db1f7cc3b4d2156094adc99ca00b76b690de739fde4d945
|
| 3 |
+
size 58116736
|
SikuRoBERTa_Bronze.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2db5b9044f295d09b12b6ec27bec4147a327125c4bf9d955cac6039ef0e8ce94
|
| 3 |
+
size 73959040
|
SikuRoBERTa_Bronze.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9783d94f89c9dd2c7f8a102a494f3747850c1154ca67420b4d4876fed575f57
|
| 3 |
+
size 69986944
|
SikuRoBERTa_Bronze.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c70238f7828c61eba2689b7cd861744c757e47438628369b76bfe6aefdcd8b56
|
| 3 |
+
size 82364032
|
SikuRoBERTa_Bronze.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35afe7bd642c9d490bc9f04bd5b2cb8d021db8341392c60dae8f17391b8484cd
|
| 3 |
+
size 80013952
|
SikuRoBERTa_Bronze.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:353c3752e6a6f8e23da77bf60226137b2822950058159edde496b6c66eebc8ff
|
| 3 |
+
size 91294336
|
SikuRoBERTa_Bronze.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e1852fb7b7fc0279280d08e734b00cf97f1c687ef265d621e4653348fbb50ec
|
| 3 |
+
size 117480704
|
SikuRoBERTa_Bronze.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa83561310052e78719ea340ef9fcf36f5737f1bdf58904a2fd95fd375a16af9
|
| 3 |
+
size 218847328
|