Marcjoni commited on
Commit
5fb67c6
·
verified ·
1 Parent(s): a8343f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -14
README.md CHANGED
@@ -1,20 +1,42 @@
1
- ---
2
- base_model:
3
- - yamatazen/LorablatedStock-12B
4
- - yamatazen/EtherealAurora-12B-v2
5
- tags:
6
- - merge
7
- - mergekit
8
- - lazymergekit
9
- - yamatazen/LorablatedStock-12B
10
- - yamatazen/EtherealAurora-12B-v2
11
- ---
 
 
 
 
12
 
13
  # KiloNovaSynth-12B
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  KiloNovaSynth-12B is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
16
- * [yamatazen/LorablatedStock-12B](https://huggingface.co/yamatazen/LorablatedStock-12B)
17
- * [yamatazen/EtherealAurora-12B-v2](https://huggingface.co/yamatazen/EtherealAurora-12B-v2)
18
 
19
  ## 🧩 Configuration
20
 
@@ -81,6 +103,6 @@ pipeline = transformers.pipeline(
81
  device_map="auto",
82
  )
83
 
84
- outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
85
  print(outputs[0]["generated_text"])
86
  ```
 
1
+ ---
2
+ base_model:
3
+ - yamatazen/LorablatedStock-12B
4
+ - yamatazen/EtherealAurora-12B-v2
5
+ - DreadPoor/Irix-12B-Model_Stock
6
+ tags:
7
+ - merge
8
+ - mergekit
9
+ - lazymergekit
10
+ - DreadPoor/Irix-12B-Model_Stock
11
+ - yamatazen/LorablatedStock-12B
12
+ - yamatazen/EtherealAurora-12B-v2
13
+ ---
14
+
15
+ <img src="./KiloNova.png" alt="Model Image"/>
16
 
17
  # KiloNovaSynth-12B
18
 
19
+ <b><i>Where matter itself is squeezed to the edge of meaning, two dying stars spiral inward.
20
+ <br> The silence breaks with a final collision, forging new worlds in the ashes.
21
+ <br> Light blooms briefly, soft but searing, as gravity sings in frequencies never heard.
22
+ <br> This is not fire, but memory collapsed into mass.</i></b>
23
+
24
+ ## 🔧 Recommended Sampling Settings:</b>
25
+ ```yaml
26
+ Temperature: 0.75 to 1.25
27
+ Min P: 0.035
28
+ Context Length: Stable at 12k tokens, with possible support for extended contexts
29
+ ```
30
+ ## 💬 Prompt Format
31
+ Supports ChatML style messages. Example:
32
+ ```yaml
33
+ <|im_start|>user
34
+ Your question here.
35
+ <|im_end|>
36
+ <|im_start|>assistant
37
+ ```
38
+
39
  KiloNovaSynth-12B is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
 
 
40
 
41
  ## 🧩 Configuration
42
 
 
103
  device_map="auto",
104
  )
105
 
106
+ outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=1, top_k=0, top_p=1)
107
  print(outputs[0]["generated_text"])
108
  ```