Steelskull
commited on
Commit
•
82e1d1f
1
Parent(s):
b5bef48
Update README.md
Browse files
README.md
CHANGED
@@ -10,27 +10,125 @@ tags:
|
|
10 |
- merge
|
11 |
|
12 |
---
|
13 |
-
# merge
|
14 |
|
15 |
-
|
|
|
16 |
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
* [EVA-UNIT-01/EVA-Qwen2.5-72B-v0.1](https://huggingface.co/EVA-UNIT-01/EVA-Qwen2.5-72B-v0.1)
|
28 |
|
29 |
-
|
|
|
|
|
|
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
32 |
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
base_model: zetasepic/Qwen2.5-72B-Instruct-abliterated-v2
|
35 |
merge_method: model_stock
|
36 |
dtype: bfloat16
|
@@ -38,4 +136,15 @@ models:
|
|
38 |
- model: EVA-UNIT-01/EVA-Qwen2.5-72B-v0.1
|
39 |
- model: ZeusLabs/Chronos-Platinum-72B
|
40 |
- model: shuttleai/shuttle-3
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
- merge
|
11 |
|
12 |
---
|
|
|
13 |
|
14 |
+
<!DOCTYPE html>
|
15 |
+
<style>
|
16 |
|
17 |
+
body {
|
18 |
+
font-family: 'Quicksand', sans-serif;
|
19 |
+
background: linear-gradient(135deg, #2E3440 0%, #1A202C 100%);
|
20 |
+
color: #D8DEE9;
|
21 |
+
margin: 0;
|
22 |
+
padding: 0;
|
23 |
+
font-size: 16px;
|
24 |
+
}
|
25 |
|
26 |
+
.container {
|
27 |
+
width: 80% auto;
|
28 |
+
max-width: 1080px auto;
|
29 |
+
margin: 20px auto;
|
30 |
+
background-color: rgba(255, 255, 255, 0.02);
|
31 |
+
padding: 20px;
|
32 |
+
border-radius: 12px;
|
33 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
34 |
+
backdrop-filter: blur(10px);
|
35 |
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
36 |
+
}
|
37 |
|
38 |
+
.header h1 {
|
39 |
+
font-size: 28px;
|
40 |
+
color: #ECEFF4;
|
41 |
+
margin: 0 0 20px 0;
|
42 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
43 |
+
}
|
44 |
|
45 |
+
.update-section {
|
46 |
+
margin-top: 30px;
|
47 |
+
}
|
|
|
48 |
|
49 |
+
.update-section h2 {
|
50 |
+
font-size: 24px;
|
51 |
+
color: #88C0D0;
|
52 |
+
}
|
53 |
|
54 |
+
.update-section p {
|
55 |
+
font-size: 16px;
|
56 |
+
line-height: 1.6;
|
57 |
+
color: #ECEFF4;
|
58 |
+
}
|
59 |
|
60 |
+
.info img {
|
61 |
+
width: 100%;
|
62 |
+
border-radius: 10px;
|
63 |
+
margin-bottom: 15px;
|
64 |
+
}
|
65 |
+
|
66 |
+
a {
|
67 |
+
color: #88C0D0;
|
68 |
+
text-decoration: none;
|
69 |
+
}
|
70 |
+
|
71 |
+
a:hover {
|
72 |
+
color: #A3BE8C;
|
73 |
+
}
|
74 |
+
|
75 |
+
.button {
|
76 |
+
display: inline-block;
|
77 |
+
background-color: #5E81AC;
|
78 |
+
color: #E5E9F0;
|
79 |
+
padding: 10px 20px;
|
80 |
+
border-radius: 5px;
|
81 |
+
cursor: pointer;
|
82 |
+
text-decoration: none;
|
83 |
+
}
|
84 |
+
|
85 |
+
.button:hover {
|
86 |
+
background-color: #81A1C1;
|
87 |
+
}
|
88 |
+
|
89 |
+
pre {
|
90 |
+
background-color: #2E3440;
|
91 |
+
padding: 10px;
|
92 |
+
border-radius: 5px;
|
93 |
+
overflow-x: auto;
|
94 |
+
}
|
95 |
+
|
96 |
+
code {
|
97 |
+
font-family: 'Courier New', monospace;
|
98 |
+
color: #D8DEE9;
|
99 |
+
}
|
100 |
+
|
101 |
+
</style>
|
102 |
+
<html lang="en">
|
103 |
+
<head>
|
104 |
+
<meta charset="UTF-8">
|
105 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
106 |
+
<title>Q2.5-MS-Mistoria-72b Data Card</title>
|
107 |
+
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
108 |
+
</head>
|
109 |
+
<body>
|
110 |
+
<div class="container">
|
111 |
+
<div class="header">
|
112 |
+
<h1>Q2.5-MS-Mistoria-72b</h1>
|
113 |
+
</div>
|
114 |
+
<div class="info">
|
115 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/64545af5ec40bbbd01242ca6/5LOvUFYiMMw6pcEsOhmo2.webp">
|
116 |
+
<p>Now the cute anime girl has your attention</p>
|
117 |
+
<p><strong>Creator:</strong> <a href="https://huggingface.co/Steelskull" target="_blank">SteelSkull</a></p>
|
118 |
+
<h1>About Mistoria-72b:</h1>
|
119 |
+
<pre><code>Name Legend:
|
120 |
+
Q2.5 = Qwen 2.5
|
121 |
+
MS = Model Stock
|
122 |
+
72B = its 72B
|
123 |
+
</code></pre>
|
124 |
+
<p>This model is my fist attempt at a 72b model as usual my goal is to merge the robust storytelling of mutiple models while attempting to maintain intelligence.</p>
|
125 |
+
<p>Use qwen format</p>
|
126 |
+
<h2>Quants: (List of badasses)</h2>
|
127 |
+
<!--<p>GGUF Quant: </p>
|
128 |
+
<p> - bartowski: <a href="https://huggingface.co/bartowski/Q2.5-MS-Mistoria-72b-GGUF" target="_blank"> Combined-GGUF </a></p>
|
129 |
+
<p> - mradermacher: <a href="https://huggingface.co/mradermacher/Q2.5-MS-Mistoria-72b-GGUF" target="_blank"> GGUF </a>// <a href="https://huggingface.co/mradermacher/Q2.5-MS-Mistoria-72b-i1-GGUF" target="_blank"> Imat-GGUF </a></p> -->
|
130 |
+
<h3>Config:</h3>
|
131 |
+
<pre><code>MODEL_NAME = "Q2.5-MS-Mistoria-72b"
|
132 |
base_model: zetasepic/Qwen2.5-72B-Instruct-abliterated-v2
|
133 |
merge_method: model_stock
|
134 |
dtype: bfloat16
|
|
|
136 |
- model: EVA-UNIT-01/EVA-Qwen2.5-72B-v0.1
|
137 |
- model: ZeusLabs/Chronos-Platinum-72B
|
138 |
- model: shuttleai/shuttle-3
|
139 |
+
</code></pre>
|
140 |
+
<p><strong>If you wish to support:</strong></p>
|
141 |
+
</div>
|
142 |
+
<div class="donation-section">
|
143 |
+
<a href="https://ko-fi.com/Y8Y0AO2XE" target="_blank">
|
144 |
+
<img height="36" style="border:0px;height:36px;" src="https://storage.ko-fi.com/cdn/kofi2.png?v=3" border="0" alt="Buy Me a Coffee at ko-fi.com" />
|
145 |
+
</a>
|
146 |
+
</div>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
</body>
|
150 |
+
</html>
|