Update README.md
Browse files
README.md
CHANGED
@@ -5,4 +5,21 @@ language:
|
|
5 |
- en
|
6 |
base_model:
|
7 |
- deepseek-ai/DeepSeek-V3
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
- en
|
6 |
base_model:
|
7 |
- deepseek-ai/DeepSeek-V3
|
8 |
+
datasets:
|
9 |
+
- TFMC/imatrix-dataset-for-japanese-llm
|
10 |
+
---
|
11 |
+
|
12 |
+
# DeepSeek-V3-bf16-gguf
|
13 |
+
[deepseek-aiさんが公開しているDeepSeek-V3](https://huggingface.co/deepseek-ai/DeepSeek-V3)のggufフォーマット変換版です。
|
14 |
+
|
15 |
+
imatrixのデータは[TFMC/imatrix-dataset-for-japanese-llm](https://huggingface.co/datasets/TFMC/imatrix-dataset-for-japanese-llm)を使用して作成しました。
|
16 |
+
|
17 |
+
## Usage
|
18 |
+
|
19 |
+
```
|
20 |
+
git clone https://github.com/ggerganov/llama.cpp.git
|
21 |
+
cd llama.cpp
|
22 |
+
cmake -B build -DGGML_CUDA=ON
|
23 |
+
cmake --build build --config Release
|
24 |
+
build/bin/llama-cli -m 'IQ2_XXS/DeepSeek-V3_IQ2_XXS-00001-of-00015.gguf' -n 128 -c 128 -p 'あなたはプロの料理人です。レシピを教えて' -cnv
|
25 |
+
```
|