Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
1 |
---
|
2 |
license: cc-by-nc-4.0
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-nc-4.0
|
3 |
+
language:
|
4 |
+
- ja
|
5 |
---
|
6 |
+
# matsuolab-weblab-10b-instruction-sft-gguf
|
7 |
+
[matsuo-labさんが公開しているweblab-10b-instruction-sft](https://huggingface.co/matsuo-lab/weblab-10b-instruction-sft)のggufフォーマット変換版です。
|
8 |
+
|
9 |
+
llama.cppのexamplesで動かせます。
|
10 |
+
|
11 |
+
## Usage (試用)
|
12 |
+
|
13 |
+
```
|
14 |
+
git clone https://github.com/ggerganov/llama.cpp.git
|
15 |
+
cd llama.cpp
|
16 |
+
git checkout gguf
|
17 |
+
```
|
18 |
+
|
19 |
+
MakeFileを下記に修正します
|
20 |
+
|
21 |
+
```
|
22 |
+
gguf: examples/gguf/gguf.cpp build-info.h ggml.o llama.o $(OBJS)
|
23 |
+
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
|
24 |
+
|
25 |
+
```
|
26 |
+
の後に
|
27 |
+
```
|
28 |
+
gguf: examples/gguf/gguf.cpp build-info.h ggml.o llama.o $(OBJS)
|
29 |
+
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
|
30 |
+
|
31 |
+
gptneox: examples/gptneox-wip/gptneox-main.cpp build-info.h ggml.o $(OBJS)
|
32 |
+
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
|
33 |
+
```
|
34 |
+
この様に追加します。
|
35 |
+
後はmakeしてから実行します。
|
36 |
+
|
37 |
+
```
|
38 |
+
make
|
39 |
+
./gptneox -m 'matsuolab-weblab-10b-instruction-sft-q4_0.gguf' -n 128 -t 8 -p '吾輩は猫である。名前は実を言うと、'
|
40 |
+
```
|
41 |
+
|