Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,7 @@ tags:
|
|
15 |
- mergekit
|
16 |
- magpie
|
17 |
---
|
18 |
-
#
|
19 |
|
20 |
A small model to create prompts the [Magpie](https://arxiv.org/abs/2406.08464) way.
|
21 |
|
@@ -39,7 +39,7 @@ All the datasets were used seperately and merged together using [Model Stock](ht
|
|
39 |
* [SlimOrcaDedupCleaned](https://huggingface.co/datasets/cgato/SlimOrcaDedupCleaned) by [cgato](https://huggingface.co/cgato)
|
40 |
* [openhermes_200k_unfiltered](https://huggingface.co/datasets/Crystalcareai/openhermes_200k_unfiltered) by [Crystalcareai](https://huggingface.co/Crystalcareai)
|
41 |
|
42 |
-
## Using
|
43 |
|
44 |
```jinja2
|
45 |
<|im_start|>system
|
@@ -48,3 +48,16 @@ All the datasets were used seperately and merged together using [Model Stock](ht
|
|
48 |
```
|
49 |
|
50 |
It actually generates an EOS token at the end of a *"user"* prompt. Lawdy that has been a pain when trying to use large models for this purpose. Good luck; have fun.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
- mergekit
|
16 |
- magpie
|
17 |
---
|
18 |
+
# LittleInstructionMaker-4B-v0.1
|
19 |
|
20 |
A small model to create prompts the [Magpie](https://arxiv.org/abs/2406.08464) way.
|
21 |
|
|
|
39 |
* [SlimOrcaDedupCleaned](https://huggingface.co/datasets/cgato/SlimOrcaDedupCleaned) by [cgato](https://huggingface.co/cgato)
|
40 |
* [openhermes_200k_unfiltered](https://huggingface.co/datasets/Crystalcareai/openhermes_200k_unfiltered) by [Crystalcareai](https://huggingface.co/Crystalcareai)
|
41 |
|
42 |
+
## Using this model to make instructions
|
43 |
|
44 |
```jinja2
|
45 |
<|im_start|>system
|
|
|
48 |
```
|
49 |
|
50 |
It actually generates an EOS token at the end of a *"user"* prompt. Lawdy that has been a pain when trying to use large models for this purpose. Good luck; have fun.
|
51 |
+
|
52 |
+
|
53 |
+
### Example
|
54 |
+
Giving the model this text at a temperature of 0.9:
|
55 |
+
```
|
56 |
+
<|im_start|>system
|
57 |
+
You are an AI coding assistant.<|im_end|>
|
58 |
+
<|im_start|>user
|
59 |
+
```
|
60 |
+
Will return this:
|
61 |
+
```
|
62 |
+
Hey, can you help me write a simple program that generates a Fibonacci sequence until a certain number of terms? Like this: Fib(5) should give me the first five numbers in the series.
|
63 |
+
```
|