Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,35 @@
|
|
1 |
---
|
2 |
license: llama2
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: llama2
|
3 |
---
|
4 |
+
|
5 |
+
# webbigdata-ALMA-7B-Ja-V2-gguf
|
6 |
+
[webbigdataさんが公開しているALMA-7B-Ja-V2](https://huggingface.co/webbigdata/ALMA-7B-Ja-V2)のggufフォーマット変換版です。
|
7 |
+
|
8 |
+
|
9 |
+
モデル一覧
|
10 |
+
[mmnga/webbigdata-ALMA-7B-Ja-V2-gguf](https://huggingface.co/mmnga/webbigdata-ALMA-7B-Ja-V2-gguf)
|
11 |
+
[mmnga/webbigdata-ALMA-7B-Ja-gguf](https://huggingface.co/mmnga/webbigdata-ALMA-7B-Ja-gguf)
|
12 |
+
|
13 |
+
|
14 |
+
## Usage
|
15 |
+
|
16 |
+
```
|
17 |
+
git clone https://github.com/ggerganov/llama.cpp.git
|
18 |
+
cd llama.cpp
|
19 |
+
make -j
|
20 |
+
./main -m 'webbigdata-ALMA-7B-Ja-V2-q4_0.gguf' -n 128 -p 'Translate this from Japanese to English:\nJapanese: 今日の夕食はピザです。\nEnglish:'
|
21 |
+
```
|
22 |
+
|
23 |
+
### 引用 Citations
|
24 |
+
|
25 |
+
|
26 |
+
~~~tex
|
27 |
+
@misc{xu2023paradigm,
|
28 |
+
title={A Paradigm Shift in Machine Translation: Boosting Translation Performance of Large Language Models},
|
29 |
+
author={Haoran Xu and Young Jin Kim and Amr Sharaf and Hany Hassan Awadalla},
|
30 |
+
year={2023},
|
31 |
+
eprint={2309.11674},
|
32 |
+
archivePrefix={arXiv},
|
33 |
+
primaryClass={cs.CL}
|
34 |
+
}
|
35 |
+
~~~
|