Delta-Vector commited on
Commit
96940da
·
verified ·
1 Parent(s): 4d23b91

Upload README(2).md

Browse files
Files changed (1) hide show
  1. README(2).md +172 -0
README(2).md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - roleplay
4
+ - creative-writing
5
+ - merge
6
+ - mergekit
7
+ base_model:
8
+ - Delta-Vector/Francois-Huali-12B
9
+ - Delta-Vector/Rei-12B
10
+ pipeline_tag: text-generation
11
+ library_name: transformers
12
+ ---
13
+ <html lang="en">
14
+ <head>
15
+ <meta charset="UTF-8">
16
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
17
+ <style>
18
+ @import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
19
+ body {
20
+ background: #0a0017;
21
+ margin: 0;
22
+ padding: 20px;
23
+ font-family: 'VT323', monospace;
24
+ color: #ff00aa;
25
+ text-shadow: 0 0 8px #ff00aa;
26
+ animation: glitch-flicker 0.2s infinite alternate;
27
+ }
28
+ @keyframes glitch-flicker {
29
+ 0% { text-shadow: 0 0 5px #ff00aa, 0 0 15px #ff00aa; }
30
+ 100% { text-shadow: 0 0 8px #ff0066, 0 0 18px #ff0066; }
31
+ }
32
+ .crt-container {
33
+ padding: 10px;
34
+ max-width: 900px;
35
+ margin: auto;
36
+ }
37
+ .crt-case {
38
+ background: linear-gradient(135deg, #130021, #20002c);
39
+ border-radius: 10px;
40
+ padding: 15px;
41
+ box-shadow:
42
+ inset 2px 2px 10px rgba(255,0,170,0.5),
43
+ 2px 2px 5px rgba(255,0,170,0.3),
44
+ 0 0 25px rgba(255,0,170,0.2);
45
+ }
46
+ .crt-screen {
47
+ background: #0c011a;
48
+ padding: 20px;
49
+ border-radius: 10px;
50
+ box-shadow:
51
+ inset 0 0 25px rgba(255,0,170,0.3),
52
+ 0 0 15px rgba(255,0,170,0.7);
53
+ filter: contrast(1.2) brightness(1.2);
54
+ text-shadow: 0px 0px 5px #ff00aa;
55
+ animation: glow-pulse 3s infinite alternate;
56
+ }
57
+ @keyframes glow-pulse {
58
+ 0% { box-shadow: inset 0 0 20px rgba(255,0,170,0.3), 0 0 15px rgba(255,0,170,0.3); }
59
+ 100% { box-shadow: inset 0 0 30px rgba(255,0,170,0.5), 0 0 25px rgba(255,0,170,0.5); }
60
+ }
61
+ h2 {
62
+ color: #ff33cc;
63
+ text-align: center;
64
+ font-size: 28px;
65
+ text-shadow:
66
+ 0 0 8px #ff33cc,
67
+ 0 0 18px #ff0044;
68
+ }
69
+ pre {
70
+ background: rgba(255,0,170,0.1);
71
+ padding: 10px;
72
+ border-radius: 10px;
73
+ color: #ff66cc;
74
+ font-size: 14px;
75
+ box-shadow: inset 0 0 10px rgba(255,0,170,0.5);
76
+ }
77
+ .glitch {
78
+ animation: text-glitch 0.5s infinite alternate;
79
+ }
80
+ @keyframes text-glitch {
81
+ 0% { transform: translateX(-2px); text-shadow: 0 0 5px #ff0066, 0 0 10px #ff33cc; }
82
+ 100% { transform: translateX(2px); text-shadow: 0 0 8px #ff00aa, 0 0 20px #ff0099; }
83
+ }
84
+ .neon-link {
85
+ color: #ff66cc;
86
+ text-decoration: none;
87
+ transition: text-shadow 0.3s ease;
88
+ }
89
+ .neon-link:hover {
90
+ text-shadow: 0px 0px 15px #ff66cc, 0 0 25px rgba(255,0,170,0.5);
91
+ }
92
+ .ascii-art {
93
+ text-align: center;
94
+ font-size: 12px;
95
+ color: #ff33cc;
96
+ text-shadow: 0px 0px 5px #ff00ff;
97
+ margin-bottom: 20px;
98
+ }
99
+ .quantso-container {
100
+ display: flex;
101
+ justify-content: center;
102
+ gap: 20px;
103
+ margin-top: 20px;
104
+ }
105
+ .quantso-box {
106
+ background: rgba(255,0,170,0.1);
107
+ padding: 15px;
108
+ border-radius: 10px;
109
+ text-align: center;
110
+ box-shadow: inset 0 0 10px rgba(255,0,170,0.5);
111
+ flex: 1;
112
+ max-width: 150px;
113
+ }
114
+ </style>
115
+ </head>
116
+ <body>
117
+ <div class="crt-container">
118
+ <div class="crt-case">
119
+ <div class="crt-screen">
120
+ <div class="ascii-art">
121
+ <pre>
122
+ PPPPPP tt
123
+ PP PP oooo eee tt sss
124
+ PPPPPP oo oo ee e tttt s
125
+ PP oo oo eeeee tt sss
126
+ MM MM oooo eeeee tttt s
127
+ MMM MMM uu uu sss eee sss
128
+ MM MM MM uu uu s ee e
129
+ MM MM uu uu sss eeeee
130
+ MM MM uuuu u s eeeee
131
+ sss
132
+ </pre>
133
+ </div>
134
+ <p>A series of Merges made for Roleplaying & Creative Writing, This model uses Rei-12B and Francois-Huali-12B and Slerp to merge the 2 models.</p>
135
+ <h3>ChatML formatting</h3>
136
+ <pre>
137
+ """
138
+ ### INPUT:
139
+ ### OUTPUT:
140
+ """
141
+ </pre>
142
+ <h3>MergeKit Configuration</h3>
143
+ <pre>
144
+ models:
145
+ - model: Delta-Vector/Francois-Huali-12B
146
+ - model: Delta-Vector/Rei-12B
147
+ merge_method: slerp
148
+ base_model: Delta-Vector/Rei-12B
149
+ parameters:
150
+ t:
151
+ - value: 0.2
152
+ dtype: bfloat16
153
+ tokenizer_source: base
154
+ </pre>
155
+ <h3>Quants:</h3>
156
+ <div class="quantso-container">
157
+ <div class="quantso-box">
158
+ <strong>GGUF</strong><br>
159
+ <a class="neon-link" href="#">https://huggingface.co/Delta-Vector/Poets-Muse-12B-gguf/</a>
160
+ </div>
161
+ <div class="quantso-box">
162
+ <strong>EXL2</strong><br>
163
+ <a class="neon-link" href="#">https://huggingface.co/Delta-Vector/Poets-Muse-12B-exl2/</a>
164
+ </div>
165
+ </div>
166
+ <h3>Credits</h3>
167
+ <p>Thank you to: Kubernetes-bad, LucyKnada, Intervitens & The rest of Anthracite</p>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </body>
172
+ </html>