Instructions to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF", filename="OpenScienceReasoning-Qwen-e10.BF16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with Ollama:
ollama run hf.co/prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
- Unsloth Studio new
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-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/OpenScienceReasoning-Qwen-e10-GGUF to start chatting
- Pi new
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/OpenScienceReasoning-Qwen-e10-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.OpenScienceReasoning-Qwen-e10-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +19 -0
- OpenScienceReasoning-Qwen-e10.BF16.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.F16.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.F32.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q2_K.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q3_K_L.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q3_K_M.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q3_K_S.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q4_0.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q4_1.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q4_K.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q4_K_M.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q4_K_S.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q5_0.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q5_1.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q5_K.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q5_K_M.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q5_K_S.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q6_K.gguf +3 -0
- OpenScienceReasoning-Qwen-e10.Q8_0.gguf +3 -0
|
@@ -33,3 +33,22 @@ 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 |
+
OpenScienceReasoning-Qwen-e10.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
OpenScienceReasoning-Qwen-e10.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
OpenScienceReasoning-Qwen-e10.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
OpenScienceReasoning-Qwen-e10.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
OpenScienceReasoning-Qwen-e10.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
OpenScienceReasoning-Qwen-e10.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
OpenScienceReasoning-Qwen-e10.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
OpenScienceReasoning-Qwen-e10.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
OpenScienceReasoning-Qwen-e10.Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
OpenScienceReasoning-Qwen-e10.Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
OpenScienceReasoning-Qwen-e10.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
OpenScienceReasoning-Qwen-e10.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
OpenScienceReasoning-Qwen-e10.Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
OpenScienceReasoning-Qwen-e10.Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
OpenScienceReasoning-Qwen-e10.Q5_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
OpenScienceReasoning-Qwen-e10.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
OpenScienceReasoning-Qwen-e10.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
OpenScienceReasoning-Qwen-e10.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
OpenScienceReasoning-Qwen-e10.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5dfbd57ed6d0c50345cf24c3e31d2560119cd3dfa814d182aeb6b2bdbe24ea85
|
| 3 |
+
size 3447349568
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50cd7f89f24e04b936e0f08c01cfd39b911358b71d491a8d058a7a3df05f46e2
|
| 3 |
+
size 3447349568
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1519c3b2ec310e407679f22fcf4752af9a6d99cadee6e5e0f78dd0b9e848a239
|
| 3 |
+
size 6888251712
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:337317a2e58a6f03ac22e620b5845f269cca672ddc0e1c700cbb651519c11249
|
| 3 |
+
size 777795904
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3626bbbfdb3b501094450e53549a07f5f2d3a946eadec16712fcb0f39c809aa9
|
| 3 |
+
size 1003501888
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1897d4f3f99a7e4af89d664378b3414d112e3a1c630bc3441245562c074410eb
|
| 3 |
+
size 939538752
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c350edf1a46246c467607d8ea75c58cc800feab391565383163dda9bb50277cd
|
| 3 |
+
size 867252544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61038f800a92d6ade3eb053a5f6fe7b4443a1e0cfc8b47608239490a7672923d
|
| 3 |
+
size 1054423360
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f37a629e68c5b5ed0cacf0d2e5b8be5fd567fc337fbf122e2900b4c5e20917a
|
| 3 |
+
size 1142503744
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1caf6cf2d4e212d6c31972b90f3e231b73eaaf89d881f023ad6398485341c331
|
| 3 |
+
size 1107409216
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1caf6cf2d4e212d6c31972b90f3e231b73eaaf89d881f023ad6398485341c331
|
| 3 |
+
size 1107409216
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca01aa4eb67e3ce4a7e6c65fcc0cc95d6ed3c70ac1a0fe712daa2b9d4174db39
|
| 3 |
+
size 1060190528
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5af4753c9c0cbc55486924c9f257f436e5601ee1e848df79f8f8a7426b9871e
|
| 3 |
+
size 1230584128
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:214c26e513af2c294a55f60144403ac697a3bf9b827bcc9f426fb98cb8373906
|
| 3 |
+
size 1318664512
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6dd0be7f5e57b0d7cee5edf81a26a7ed3627848839ee71d0ed2960743e9ef91
|
| 3 |
+
size 1257879872
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6dd0be7f5e57b0d7cee5edf81a26a7ed3627848839ee71d0ed2960743e9ef91
|
| 3 |
+
size 1257879872
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:41cfada20ac8a5f07cf224a44265d5b83a6670e4ebabfb7806140825344bf1d3
|
| 3 |
+
size 1230584128
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c3678d5fa80248415ee1d909a163b9d5e44e3ce152be5ce10109b06ee155b1c
|
| 3 |
+
size 1417754944
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c54e6383f1aca246b9201b745f2a036a436ea3d77de48a9e5769ff74216c390
|
| 3 |
+
size 1834426688
|