Instructions to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="prithivMLmods/Open-R1-Mini-Experimental-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/Open-R1-Mini-Experimental-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/Open-R1-Mini-Experimental-GGUF", filename="Open-R1-Mini-Experimental-f16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Open-R1-Mini-Experimental-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 prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Open-R1-Mini-Experimental-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 prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Open-R1-Mini-Experimental-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 prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Open-R1-Mini-Experimental-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Open-R1-Mini-Experimental-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/Open-R1-Mini-Experimental-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 "prithivMLmods/Open-R1-Mini-Experimental-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Open-R1-Mini-Experimental-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "prithivMLmods/Open-R1-Mini-Experimental-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Open-R1-Mini-Experimental-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Ollama
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M
- Unsloth Studio new
How to use prithivMLmods/Open-R1-Mini-Experimental-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 prithivMLmods/Open-R1-Mini-Experimental-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 prithivMLmods/Open-R1-Mini-Experimental-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/Open-R1-Mini-Experimental-GGUF to start chatting
- Docker Model Runner
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/Open-R1-Mini-Experimental-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Open-R1-Mini-Experimental-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Open-R1-Mini-Experimental-GGUF-Q4_K_M
List all available models
lemonade list
Open-R1-Mini-Experimental
Browse files- .gitattributes +11 -0
- Open-R1-Mini-Experimental-q2_k.gguf +3 -0
- Open-R1-Mini-Experimental-q3_k_l.gguf +3 -0
- Open-R1-Mini-Experimental-q3_k_m.gguf +3 -0
- Open-R1-Mini-Experimental-q3_k_s.gguf +3 -0
- Open-R1-Mini-Experimental-q4_0.gguf +3 -0
- Open-R1-Mini-Experimental-q4_k_m.gguf +3 -0
- Open-R1-Mini-Experimental-q5_0.gguf +3 -0
- Open-R1-Mini-Experimental-q5_k_m.gguf +3 -0
- Open-R1-Mini-Experimental-q5_k_s.gguf +3 -0
- Open-R1-Mini-Experimental-q6_k.gguf +3 -0
- Open-R1-Mini-Experimental-q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,14 @@ 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 |
+
Open-R1-Mini-Experimental-q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Open-R1-Mini-Experimental-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Open-R1-Mini-Experimental-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Open-R1-Mini-Experimental-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Open-R1-Mini-Experimental-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Open-R1-Mini-Experimental-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Open-R1-Mini-Experimental-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Open-R1-Mini-Experimental-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Open-R1-Mini-Experimental-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Open-R1-Mini-Experimental-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Open-R1-Mini-Experimental-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Open-R1-Mini-Experimental-q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc0852927677ba09c0e27493d92e2f0d89391896b26500a16218e206be426e60
|
| 3 |
+
size 676302816
|
Open-R1-Mini-Experimental-q3_k_l.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:814161785b7422eba6bf410ed38e7a84f1e94ce1889017788f2999cca1057fa9
|
| 3 |
+
size 880160736
|
Open-R1-Mini-Experimental-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93a7f1d7077333b88de26c4f8e7499955990c824ed8aa24939f7517e7839c362
|
| 3 |
+
size 824176608
|
Open-R1-Mini-Experimental-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88e9efdb2afb7d54935fbdde6494ad419fcf43019aeff896cc59032ca0eca033
|
| 3 |
+
size 760942560
|
Open-R1-Mini-Experimental-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fc60230d05e4943b62e36e43b8a864dbf7d51bdaafa74c6e11e7fb47b77ebf7
|
| 3 |
+
size 934952928
|
Open-R1-Mini-Experimental-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da791f56feddcfd297c5328807484a1356f2d4a4fe290c7fcc96d305b7dee460
|
| 3 |
+
size 986046432
|
Open-R1-Mini-Experimental-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:387c5bc805abec4b53eea207af193761b034afaed9f1940d3dde3a2aabfd4d5b
|
| 3 |
+
size 1098727392
|
Open-R1-Mini-Experimental-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92608e0649c054c5df39074520aba325143e794c2e5e294e1ce9be2185f12cb7
|
| 3 |
+
size 1125048288
|
Open-R1-Mini-Experimental-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35b9277751c74c26fb2b93719f63b7cf738ed42d5c53f6c3d59d115b59512594
|
| 3 |
+
size 1098727392
|
Open-R1-Mini-Experimental-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ff1e0423d2c2cc4026023517e60469ae9950a47ea0acdcf4ead873eaf130de0
|
| 3 |
+
size 1272737760
|
Open-R1-Mini-Experimental-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e5112f5bd53aafd59dcc38f070acdbe6c1f15fc2641ba3b1c4c23bfc2e57800
|
| 3 |
+
size 1646570976
|