Instructions to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/dart-math-llama3-8b-prop2diff-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/dart-math-llama3-8b-prop2diff-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/dart-math-llama3-8b-prop2diff-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 tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
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 tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
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 tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/dart-math-llama3-8b-prop2diff-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/dart-math-llama3-8b-prop2diff-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
- SGLang
How to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tensorblock/dart-math-llama3-8b-prop2diff-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/dart-math-llama3-8b-prop2diff-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tensorblock/dart-math-llama3-8b-prop2diff-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tensorblock/dart-math-llama3-8b-prop2diff-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with Ollama:
ollama run hf.co/tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/dart-math-llama3-8b-prop2diff-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 tensorblock/dart-math-llama3-8b-prop2diff-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 tensorblock/dart-math-llama3-8b-prop2diff-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/dart-math-llama3-8b-prop2diff-GGUF to start chatting
- Docker Model Runner
How to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
- Lemonade
How to use tensorblock/dart-math-llama3-8b-prop2diff-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/dart-math-llama3-8b-prop2diff-GGUF:Q2_K
Run and chat with the model
lemonade run user.dart-math-llama3-8b-prop2diff-GGUF-Q2_K
List all available models
lemonade list
- Atomic Chat
Keep Q2_K/Q3_K_M gguf only
Browse files- dart-math-llama3-8b-prop2diff-Q3_K_L.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q3_K_S.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q4_0.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q4_K_M.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q4_K_S.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q5_0.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q5_K_M.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q5_K_S.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q6_K.gguf +0 -3
- dart-math-llama3-8b-prop2diff-Q8_0.gguf +0 -3
dart-math-llama3-8b-prop2diff-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7b623ddb58525c4558f946140299541e0403224310337c72890400a71b19f9e4
|
| 3 |
-
size 4322285664
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:387a2384770f5d26a7455aba6967c92696dd850ad76274daa72754026ef386b9
|
| 3 |
-
size 3664828512
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0f9f74045d265090349b71a04a28267f2b74b1c6406da1e2f5a5f76ed56202d0
|
| 3 |
-
size 4661575776
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:cfd1eed2af1f831df9c5b0682e8c9ef83ce47044420db16c36d39987dcd387e4
|
| 3 |
-
size 4921098336
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:22d36968d0a6daf52f41886a85665a18aa841ae90b1b37b43f33e3fa1f9b4ee4
|
| 3 |
-
size 4693033056
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4b0b7ad67b5cad68f413aea5f0a2e495ad35e8de66925c1b9edbcc90ac8723be
|
| 3 |
-
size 5599690848
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c884974f05e4b5faeea77da5f4b381b475fc636d9ead99afb84f9c33d23b2ada
|
| 3 |
-
size 5733384288
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7ac2381749881d377ae6a7c4e8c2a4f11cb07fe1629e3d91d3e532fc862525bc
|
| 3 |
-
size 5599690848
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:70502362490ffc910d9c3cab788b9a50e51d400aa18fec17abf04dc0e2abd430
|
| 3 |
-
size 6596438112
|
|
|
|
|
|
|
|
|
|
|
|
dart-math-llama3-8b-prop2diff-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a5ddbd9d06226387f54357fbcf14e903ac4f028ffb8f00f9b595ff59e7f88646
|
| 3 |
-
size 8541329504
|
|
|
|
|
|
|
|
|
|
|
|