Upload README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,52 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: microsoft/Phi-3.5-mini-instruct
|
3 |
+
language:
|
4 |
+
- multilingual
|
5 |
+
library_name: transformers
|
6 |
+
license: gemma
|
7 |
+
license_link: https://ai.google.dev/gemma/terms
|
8 |
+
pipeline_tag: text-generation
|
9 |
+
tags:
|
10 |
+
- nlp
|
11 |
+
- code
|
12 |
+
quantized_by: ymcki
|
13 |
+
widget:
|
14 |
+
- messages:
|
15 |
+
- role: user
|
16 |
+
content: Can you provide ways to eat combinations of bananas and dragonfruits?
|
17 |
+
---
|
18 |
+
|
19 |
+
Original model: https://huggingface.co/google/gemma-2-2b-jpn-it
|
20 |
+
|
21 |
+
Run them in [LM Studio](https://lmstudio.ai/)
|
22 |
+
|
23 |
+
## Prompt format
|
24 |
+
|
25 |
+
```
|
26 |
+
<|system|> {system_prompt}<|end|><|user|> {prompt}<|end|><|assistant|>
|
27 |
+
```
|
28 |
+
|
29 |
+
## Download a file (not the whole branch) from below:
|
30 |
+
|
31 |
+
| Filename | Quant type | File Size | Split | Description |
|
32 |
+
| -------- | ---------- | --------- | ----- | ----------- |
|
33 |
+
| [gemma-2-2b-jpn-it-f16.gguf](https://huggingface.co/ymcki/gemma-2-2b-jpn-it-GGUFP/blob/main/gemma-2-2b-jpn-it-f16.gguf) | f16 | 5.24GB | false | Full F16 weights. |
|
34 |
+
| [gemma-2-2b-jpn-it-Q8_0.gguf](https://huggingface.co/ymcki/gemma-2-2b-jpn-it-GGUFP/blob/main/gemma-2-2b-jpn-it-Q8_0.gguf) | Q8_0 | 2.78GB | false | Extremely high quality, *recommended*. |
|
35 |
+
|
36 |
+
## Downloading using huggingface-cli
|
37 |
+
|
38 |
+
First, make sure you have hugginface-cli installed:
|
39 |
+
|
40 |
+
```
|
41 |
+
pip install -U "huggingface_hub[cli]"
|
42 |
+
```
|
43 |
+
|
44 |
+
Then, you can target the specific file you want:
|
45 |
+
|
46 |
+
```
|
47 |
+
huggingface-cli download ymcki/gemma-2-2b-jpn-it-GGUF --include "gemma-2-2b-jpn-it-Q8_0.gguf" --local-dir ./
|
48 |
+
```
|
49 |
+
|
50 |
+
## Credits
|
51 |
+
|
52 |
+
Thank you bartowski for providing a README.md to get me started.
|