Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- Mistral-Small-24B-Instruct-2501-IQ4_NL.gguf +3 -0
- README.md +26 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ 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 |
+
Mistral-Small-24B-Instruct-2501-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
Mistral-Small-24B-Instruct-2501-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c8c6581c7e0675d0680b2c5f0b729e6d59571104e5d8337b2523aa41894cb9b
|
| 3 |
+
size 13468014240
|
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
- ja
|
| 7 |
+
datasets:
|
| 8 |
+
- TFMC/imatrix-dataset-for-japanese-llm
|
| 9 |
+
base_model:
|
| 10 |
+
- mistralai/Mistral-Small-24B-Instruct-2501
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Mistral-Small-24B-Instruct-2501-gguf
|
| 14 |
+
[mistralaiさんが公開しているMistral-Small-24B-Instruct-2501](https://huggingface.co/mistralai/Mistral-Small-24B-Instruct-2501)のggufフォーマット変換版です。
|
| 15 |
+
|
| 16 |
+
imatrixのデータは[TFMC/imatrix-dataset-for-japanese-llm](https://huggingface.co/datasets/TFMC/imatrix-dataset-for-japanese-llm)を使用して作成しました。
|
| 17 |
+
|
| 18 |
+
## Usage
|
| 19 |
+
|
| 20 |
+
```
|
| 21 |
+
git clone https://github.com/ggerganov/llama.cpp.git
|
| 22 |
+
cd llama.cpp
|
| 23 |
+
cmake -B build -DGGML_CUDA=ON
|
| 24 |
+
cmake --build build --config Release
|
| 25 |
+
build/bin/llama-cli -m 'Mistral-Small-24B-Instruct-2501-gguf' -n 128 -c 128 -p 'あなたはプロの料理人です。レシピを教えて' -cnv
|
| 26 |
+
```
|