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
- 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 new
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 +9 -0
- bigscience.bloom.Q4_K_M-00001-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00002-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00003-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00004-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00005-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00006-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00007-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00008-of-00009.gguf +3 -0
- bigscience.bloom.Q4_K_M-00009-of-00009.gguf +3 -0
.gitattributes
CHANGED
|
@@ -66,3 +66,12 @@ bigscience.bloom.Q5_K_M-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 66 |
bigscience.bloom.Q5_K_M-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
bigscience.bloom.Q5_K_M-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
bigscience.bloom.Q5_K_M-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
bigscience.bloom.Q5_K_M-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
bigscience.bloom.Q5_K_M-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
bigscience.bloom.Q5_K_M-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
bigscience.bloom.Q4_K_M-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
bigscience.bloom.Q4_K_M-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
bigscience.bloom.Q4_K_M-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
bigscience.bloom.Q4_K_M-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
bigscience.bloom.Q4_K_M-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
bigscience.bloom.Q4_K_M-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
bigscience.bloom.Q4_K_M-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
bigscience.bloom.Q4_K_M-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
bigscience.bloom.Q4_K_M-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
bigscience.bloom.Q4_K_M-00001-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d7e085a2918b2292a1697617a09bdbdc85df492f5ad17f081ca86614ccdc02b
|
| 3 |
+
size 13911305088
|
bigscience.bloom.Q4_K_M-00002-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fb06b0965d4d3617d32b7a367bc7d9d4c4f7c4507d393cfb8ab5a5b3984d394
|
| 3 |
+
size 13821515648
|
bigscience.bloom.Q4_K_M-00003-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abd33a13a381931932346e771d4a8000b56c314bd89e9839bcc4ef5e3b26212e
|
| 3 |
+
size 13821573152
|
bigscience.bloom.Q4_K_M-00004-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:284a30e06cb6af79990e5de576bcbe15b09601e928b9a1af0b9aa53b6ba1908b
|
| 3 |
+
size 13821573152
|
bigscience.bloom.Q4_K_M-00005-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ccf4d326eccdc9b8ad79e7d936507cd8c20041e7696d1a7ad0734e397e51b8e6
|
| 3 |
+
size 13821573152
|
bigscience.bloom.Q4_K_M-00006-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a113774f2bfa002737fa16dc89f2d3f3978f3254e32d9eeb5a615593008dfcf9
|
| 3 |
+
size 13821573152
|
bigscience.bloom.Q4_K_M-00007-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca9b67fe1e2368cfb32790dcba7a9e049e2e9544cc3fee09b1e14c65c6b48f90
|
| 3 |
+
size 13821573152
|
bigscience.bloom.Q4_K_M-00008-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:742d12ff8d7ada21f204dcca6c64b27c3c930f33f0d60238dbfee59614318b41
|
| 3 |
+
size 13416265184
|
bigscience.bloom.Q4_K_M-00009-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa610fcc45e0df71f560cfc92b9e4ec8585d8ec564bde2264ffccc0ed0d5eab9
|
| 3 |
+
size 4491183808
|