Instructions to use DevQuasar/bigscience.bloom-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use DevQuasar/bigscience.bloom-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="DevQuasar/bigscience.bloom-GGUF", filename="bigscience.bloom.Q2_K-00001-of-00005.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 DevQuasar/bigscience.bloom-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf DevQuasar/bigscience.bloom-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf DevQuasar/bigscience.bloom-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 DevQuasar/bigscience.bloom-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf DevQuasar/bigscience.bloom-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 DevQuasar/bigscience.bloom-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf DevQuasar/bigscience.bloom-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 DevQuasar/bigscience.bloom-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf DevQuasar/bigscience.bloom-GGUF:Q4_K_M
Use Docker
docker model run hf.co/DevQuasar/bigscience.bloom-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use DevQuasar/bigscience.bloom-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DevQuasar/bigscience.bloom-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DevQuasar/bigscience.bloom-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/DevQuasar/bigscience.bloom-GGUF:Q4_K_M
- Ollama
How to use DevQuasar/bigscience.bloom-GGUF with Ollama:
ollama run hf.co/DevQuasar/bigscience.bloom-GGUF:Q4_K_M
- Unsloth Studio
How to use DevQuasar/bigscience.bloom-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 DevQuasar/bigscience.bloom-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 DevQuasar/bigscience.bloom-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DevQuasar/bigscience.bloom-GGUF to start chatting
- Docker Model Runner
How to use DevQuasar/bigscience.bloom-GGUF with Docker Model Runner:
docker model run hf.co/DevQuasar/bigscience.bloom-GGUF:Q4_K_M
- Lemonade
How to use DevQuasar/bigscience.bloom-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull DevQuasar/bigscience.bloom-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.bigscience.bloom-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +7 -0
- bigscience.bloom.Q3_K_M-00001-of-00007.gguf +3 -0
- bigscience.bloom.Q3_K_M-00002-of-00007.gguf +3 -0
- bigscience.bloom.Q3_K_M-00003-of-00007.gguf +3 -0
- bigscience.bloom.Q3_K_M-00004-of-00007.gguf +3 -0
- bigscience.bloom.Q3_K_M-00005-of-00007.gguf +3 -0
- bigscience.bloom.Q3_K_M-00006-of-00007.gguf +3 -0
- bigscience.bloom.Q3_K_M-00007-of-00007.gguf +3 -0
.gitattributes
CHANGED
|
@@ -49,3 +49,10 @@ bigscience.bloom.Q2_K-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 49 |
bigscience.bloom.Q2_K-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
bigscience.bloom.Q2_K-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
bigscience.bloom.Q2_K-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
bigscience.bloom.Q2_K-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
bigscience.bloom.Q2_K-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
bigscience.bloom.Q2_K-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
bigscience.bloom.Q3_K_M-00001-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
bigscience.bloom.Q3_K_M-00002-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
bigscience.bloom.Q3_K_M-00003-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
bigscience.bloom.Q3_K_M-00004-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
bigscience.bloom.Q3_K_M-00005-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
bigscience.bloom.Q3_K_M-00006-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
bigscience.bloom.Q3_K_M-00007-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
bigscience.bloom.Q3_K_M-00001-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bcf2a56541a903670a4180b8e739cfa50a743da0deaaee9f08424992534d1bec
|
| 3 |
+
size 13987401760
|
bigscience.bloom.Q3_K_M-00002-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1be30bed57e3cb244685106fbaa99bc1a424ff985c42f9d73e7df2bf4e71f86f
|
| 3 |
+
size 13951343808
|
bigscience.bloom.Q3_K_M-00003-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be085304114f3964e6de42d14530d511b585c423f0405df5b488ebfe22a43019
|
| 3 |
+
size 13713710208
|
bigscience.bloom.Q3_K_M-00004-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd9cb0bc281b7be1a83e82e185da33327c52a61a552092e8c778487f9553650b
|
| 3 |
+
size 13604355200
|
bigscience.bloom.Q3_K_M-00005-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47d065bbbce231829dc2d53e9e6b6a1552b03cae33d7be2c40cdab0eb151b658
|
| 3 |
+
size 13720247520
|
bigscience.bloom.Q3_K_M-00006-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2aab2ea8ab972617ed8f39521d570a0a37009e56514819d53751a23b85f0bc80
|
| 3 |
+
size 13951343840
|
bigscience.bloom.Q3_K_M-00007-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f29d3319fc4d12cb2aa44a1d74274bb46b1c043eafeda7d4a01412db5d63c477
|
| 3 |
+
size 11509290880
|