Instructions to use mradermacher/quora-roberta-base-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/quora-roberta-base-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/quora-roberta-base-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/quora-roberta-base-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/quora-roberta-base-GGUF", filename="quora-roberta-base.IQ4_XS.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/quora-roberta-base-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/quora-roberta-base-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/quora-roberta-base-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/quora-roberta-base-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/quora-roberta-base-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/quora-roberta-base-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/quora-roberta-base-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/quora-roberta-base-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/quora-roberta-base-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/quora-roberta-base-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/quora-roberta-base-GGUF with Ollama:
ollama run hf.co/mradermacher/quora-roberta-base-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/quora-roberta-base-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/quora-roberta-base-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/quora-roberta-base-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/quora-roberta-base-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/quora-roberta-base-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/quora-roberta-base-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/quora-roberta-base-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/quora-roberta-base-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.quora-roberta-base-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- quora-roberta-base.IQ4_XS.gguf +3 -0
- quora-roberta-base.Q2_K.gguf +3 -0
- quora-roberta-base.Q3_K_L.gguf +3 -0
- quora-roberta-base.Q3_K_M.gguf +3 -0
- quora-roberta-base.Q3_K_S.gguf +3 -0
- quora-roberta-base.Q4_K_M.gguf +3 -0
- quora-roberta-base.Q4_K_S.gguf +3 -0
- quora-roberta-base.Q5_K_M.gguf +3 -0
- quora-roberta-base.Q5_K_S.gguf +3 -0
- quora-roberta-base.Q6_K.gguf +3 -0
- quora-roberta-base.Q8_0.gguf +3 -0
- quora-roberta-base.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 |
+
quora-roberta-base.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
quora-roberta-base.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
quora-roberta-base.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
quora-roberta-base.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
quora-roberta-base.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
quora-roberta-base.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
quora-roberta-base.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
quora-roberta-base.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
quora-roberta-base.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
quora-roberta-base.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
quora-roberta-base.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
quora-roberta-base.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
quora-roberta-base.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:770297e98b66298b2f527650dfff97fc850a8cb4f2aac462e47f42b0781081d3
|
| 3 |
+
size 81316480
|
quora-roberta-base.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d31ba38f70d6f1456cfbd10c48dc6100a11a9b90558e110a9fb4d940b77cb49
|
| 3 |
+
size 67888768
|
quora-roberta-base.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ccdca75ac447532e6ab30193ca930c9999c1ce5d2a1ed2184164cb16e66aa8d7
|
| 3 |
+
size 83210368
|
quora-roberta-base.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6814f362d180a011e61ab1114e5e951495b860f04d81f68537f2a0beafbdadbc
|
| 3 |
+
size 78049408
|
quora-roberta-base.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a2d6088940a827de3971f8e423d910be409134f098cbe28b3e7b546c628571c
|
| 3 |
+
size 72261760
|
quora-roberta-base.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25bf2bff8d9a9043ff763e3150877aae2cf7be55a67585a0606d6f71c524f4fe
|
| 3 |
+
size 88182400
|
quora-roberta-base.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ad1e489ae067023d0b19e440277a0084dbd60693ab72358481eb1f076ece7d1
|
| 3 |
+
size 84210304
|
quora-roberta-base.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0f2382f0dcb38c79b54835dfd84957993f2f6de58622e9f610d7ed567ed2330
|
| 3 |
+
size 96661120
|
quora-roberta-base.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab2d3412ae2ae8cf988f7afd7a8a0019fccd88212174eb29692c73910d2dfc4e
|
| 3 |
+
size 94311040
|
quora-roberta-base.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cb1c8d393bb994d9dd6c22613578bc05dff7127cab23b570f790b95c8992e57
|
| 3 |
+
size 105669760
|
quora-roberta-base.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66342963e14c5779198d6f30bb746acfd15baf62b54250e79d54f4fae2fabfcd
|
| 3 |
+
size 135732000
|
quora-roberta-base.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a057f4c1a34c134758c03cdd5f959c4d09d4b0675bed92b54d83b10491fa5b98
|
| 3 |
+
size 252101984
|