Instructions to use unsloth/MAI-DS-R1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/MAI-DS-R1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/MAI-DS-R1-GGUF", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("unsloth/MAI-DS-R1-GGUF", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("unsloth/MAI-DS-R1-GGUF", trust_remote_code=True) - llama-cpp-python
How to use unsloth/MAI-DS-R1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="unsloth/MAI-DS-R1-GGUF", filename="BF16/MAI-DS-R1-BF16-00001-of-00030.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/MAI-DS-R1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
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 unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
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 unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/MAI-DS-R1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/MAI-DS-R1-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": "unsloth/MAI-DS-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- SGLang
How to use unsloth/MAI-DS-R1-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 "unsloth/MAI-DS-R1-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": "unsloth/MAI-DS-R1-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 "unsloth/MAI-DS-R1-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": "unsloth/MAI-DS-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/MAI-DS-R1-GGUF with Ollama:
ollama run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- Unsloth Studio
How to use unsloth/MAI-DS-R1-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 unsloth/MAI-DS-R1-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 unsloth/MAI-DS-R1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unsloth/MAI-DS-R1-GGUF to start chatting
- Docker Model Runner
How to use unsloth/MAI-DS-R1-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/MAI-DS-R1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.MAI-DS-R1-GGUF-UD-Q4_K_XL
List all available models
lemonade list
Add files using upload-large-folder tool
Browse files- .gitattributes +23 -0
- UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00001-of-00004.gguf +3 -0
- UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00002-of-00004.gguf +3 -0
- UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00003-of-00004.gguf +3 -0
- UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00004-of-00004.gguf +3 -0
- UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00001-of-00005.gguf +3 -0
- UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00002-of-00005.gguf +3 -0
- UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00003-of-00005.gguf +3 -0
- UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00004-of-00005.gguf +3 -0
- UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00005-of-00005.gguf +3 -0
- UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00001-of-00006.gguf +3 -0
- UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00002-of-00006.gguf +3 -0
- UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00003-of-00006.gguf +3 -0
- UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00004-of-00006.gguf +3 -0
- UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00005-of-00006.gguf +3 -0
- UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00006-of-00006.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00001-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00002-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00003-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00004-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00005-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00006-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00007-of-00008.gguf +3 -0
- UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00008-of-00008.gguf +3 -0
.gitattributes
CHANGED
|
@@ -48,3 +48,26 @@ Q8_0/MAI-DS-R1-Q8_0-00012-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 48 |
Q8_0/MAI-DS-R1-Q8_0-00009-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
Q8_0/MAI-DS-R1-Q8_0-00010-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
Q8_0/MAI-DS-R1-Q8_0-00013-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
Q8_0/MAI-DS-R1-Q8_0-00009-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
Q8_0/MAI-DS-R1-Q8_0-00010-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
Q8_0/MAI-DS-R1-Q8_0-00013-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00001-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00001-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1083cb97b73faf9298b70dd5634aa80c54b25d2080c0cffe94a45c708d456135
|
| 3 |
+
size 49174756160
|
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00002-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e8acf3c44107ba043ef63a9f3027f50ab4588ad11e73eef677d78ea3ad92760
|
| 3 |
+
size 49109596672
|
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00003-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ec2921adcf4ceaaf53f2b6c724c13d2355ae39490ccc35a976379f575c3cd69
|
| 3 |
+
size 49947466016
|
UD-IQ1_S/MAI-DS-R1-UD-IQ1_S-00004-of-00004.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0017366c84c7e02dfe41a0940e41e97bdd7f5a39e5aa3218ce1d339ab5a4ed2f
|
| 3 |
+
size 36949321952
|
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92f83cce0a04eff62487f7355ca15464c67deef79eb805eb156e20952060a94e
|
| 3 |
+
size 49376754464
|
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00002-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9319cb1fcecf2c219aba6ee28834da3ed512dbcc5916cd65f6fe927001575eeb
|
| 3 |
+
size 48807974624
|
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00003-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0332de805652ab99c0f4cee54408769745aaf0e76e4d5a77b4767d86b092b0ca
|
| 3 |
+
size 49352312672
|
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00004-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf15598a0f460ebff116509f232a21045f2e2742da2595c8ddbcb63bf975c4d7
|
| 3 |
+
size 48789538784
|
UD-IQ2_M/MAI-DS-R1-UD-IQ2_M-00005-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cd35705676cdc115f216983bc070aa2c8dd75f54de81b8a9a779a633d2aaaf9
|
| 3 |
+
size 31960950432
|
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00001-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1bd8d04049ffcc7e3d67f90c4932ca4a114837202bb523f81c378fae7a76748
|
| 3 |
+
size 48884849280
|
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00002-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e444a379fa50759ac95394cb50f201f7245712700b1024da8ac63115ddafbae
|
| 3 |
+
size 49976522304
|
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00003-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:169c74d9a5925910160ad13886ce1acb888e09042ce1ab7315d37d630156cc75
|
| 3 |
+
size 49605994176
|
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00004-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2b109040daacdf2dd7f95af1b6e6dc47e6ab21951124eddaf24d33c91b91387
|
| 3 |
+
size 49382563936
|
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00005-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5e0d1b26911cee9e4f679678735cec1f3179ca0538cc2ab2991b5e47fcf6e66
|
| 3 |
+
size 48415077824
|
UD-Q2_K_XL/MAI-DS-R1-UD-Q2_K_XL-00006-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b86b5862cfe509c1131696f4fef8254d5736e39903352581fbb43d36b2aa2e39
|
| 3 |
+
size 4616106656
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00001-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfee151ca64463079290b41b8e409e315959f5d2d202dd1f01804c31b2ee7965
|
| 3 |
+
size 49330239808
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00002-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8c6df0903db59519564140f159c72eed8d6c084677efa7a578d3b76f86ba31a
|
| 3 |
+
size 48507439872
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00003-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79e3c31e2929adaf6cbacef61fc6201d76f02d76bc837221d104d90e145b84ee
|
| 3 |
+
size 48021659008
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00004-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5327717020ed04bbb356526eab05b871bca78b3caef600f9e9850bf41ddff9a2
|
| 3 |
+
size 49068004224
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00005-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb2c0bf4443eef470c884fdcfa01ef74c9324f81b3e546ce786d46ef2aad8069
|
| 3 |
+
size 49681653248
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00006-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be7ed891a0019e0dda8b5f7243af30163c84f0f91678dc8505f1f3852b1521f8
|
| 3 |
+
size 49782969344
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00007-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92c4e3c62c577f1631896d7f7550a5c4fd1a132c176c4cf8124841bd065e223e
|
| 3 |
+
size 49805476992
|
UD-Q4_K_XL/MAI-DS-R1-UD-Q4_K_XL-00008-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a66113de7b0d659c043ab020c14071a68c69284f5c43bb3be9a695a89b14feb
|
| 3 |
+
size 39806101888
|