Steelskull
commited on
Commit
•
4ed73d4
1
Parent(s):
23a0841
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- moe
|
5 |
+
- frankenmoe
|
6 |
+
- merge
|
7 |
+
- mergekit
|
8 |
+
- Himitsui/Kaiju-11B
|
9 |
+
- Sao10K/Fimbulvetr-11B-v2
|
10 |
+
- decapoda-research/Antares-11b-v2
|
11 |
+
- beberik/Nyxene-v3-11B
|
12 |
+
base_model:
|
13 |
+
- Himitsui/Kaiju-11B
|
14 |
+
- Sao10K/Fimbulvetr-11B-v2
|
15 |
+
- decapoda-research/Antares-11b-v2
|
16 |
+
- beberik/Nyxene-v3-11B
|
17 |
+
---
|
18 |
+
<!DOCTYPE html>
|
19 |
+
<style>
|
20 |
+
body {
|
21 |
+
font-family: 'Quicksand', sans-serif;
|
22 |
+
background: linear-gradient(135deg, #2E3440 0%, #1A202C 100%);
|
23 |
+
color: #D8DEE9;
|
24 |
+
margin: 0;
|
25 |
+
padding: 0;
|
26 |
+
font-size: 16px;
|
27 |
+
}
|
28 |
+
|
29 |
+
.container {
|
30 |
+
width: 80%;
|
31 |
+
max-width: 800px;
|
32 |
+
margin: 20px auto;
|
33 |
+
background-color: rgba(255, 255, 255, 0.02);
|
34 |
+
padding: 20px;
|
35 |
+
border-radius: 12px;
|
36 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
37 |
+
backdrop-filter: blur(10px);
|
38 |
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
39 |
+
}
|
40 |
+
|
41 |
+
.header h1 {
|
42 |
+
font-size: 28px;
|
43 |
+
color: #ECEFF4;
|
44 |
+
margin: 0 0 20px 0;
|
45 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
46 |
+
}
|
47 |
+
|
48 |
+
.update-section {
|
49 |
+
margin-top: 30px;
|
50 |
+
}
|
51 |
+
|
52 |
+
.update-section h2 {
|
53 |
+
font-size: 24px;
|
54 |
+
color: #88C0D0;
|
55 |
+
}
|
56 |
+
|
57 |
+
.update-section p {
|
58 |
+
font-size: 16px;
|
59 |
+
line-height: 1.6;
|
60 |
+
color: #ECEFF4;
|
61 |
+
}
|
62 |
+
|
63 |
+
.info img {
|
64 |
+
width: 100%;
|
65 |
+
border-radius: 10px;
|
66 |
+
margin-bottom: 15px;
|
67 |
+
}
|
68 |
+
|
69 |
+
a {
|
70 |
+
color: #88C0D0;
|
71 |
+
text-decoration: none;
|
72 |
+
}
|
73 |
+
|
74 |
+
a:hover {
|
75 |
+
color: #A3BE8C;
|
76 |
+
}
|
77 |
+
|
78 |
+
.button {
|
79 |
+
display: inline-block;
|
80 |
+
background-color: #5E81AC;
|
81 |
+
color: #E5E9F0;
|
82 |
+
padding: 10px 20px;
|
83 |
+
border-radius: 5px;
|
84 |
+
cursor: pointer;
|
85 |
+
text-decoration: none;
|
86 |
+
}
|
87 |
+
|
88 |
+
.button:hover {
|
89 |
+
background-color: #81A1C1;
|
90 |
+
}
|
91 |
+
|
92 |
+
</style>
|
93 |
+
<html lang="en">
|
94 |
+
<head>
|
95 |
+
<meta charset="UTF-8">
|
96 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
97 |
+
<title>Umbra-v3-MoE-4x11b Data Card</title>
|
98 |
+
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
99 |
+
</head>
|
100 |
+
<body>
|
101 |
+
<div class="container">
|
102 |
+
<div class="header">
|
103 |
+
<h1>Umbra-v3-MoE-4x11b-2ex</h1>
|
104 |
+
</div>
|
105 |
+
<div class="info">
|
106 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/64545af5ec40bbbd01242ca6/MHmVGOLGh4I5MfQ83iiXS.jpeg">
|
107 |
+
<p><strong>Creator:</strong> <a href="https://huggingface.co/Steelskull" target="_blank">SteelSkull</a></p>
|
108 |
+
<p><strong>About Umbra-v3-MoE-4x11b:</strong> A Mixture of Experts model designed for general assistance with a special knack for storytelling and RP/ERP</p>
|
109 |
+
<p>Integrates models from notable sources for enhanced performance in diverse tasks. this is the two expert version</p>
|
110 |
+
<p><strong>Source Models:</strong></p>
|
111 |
+
<ul>
|
112 |
+
<li><a href="https://huggingface.co/Himitsui/Kaiju-11B">Himitsui/Kaiju-11B</a></li>
|
113 |
+
<li><a href="https://huggingface.co/Sao10K/Fimbulvetr-11B-v2">Sao10K/Fimbulvetr-11B-v2</a></li>
|
114 |
+
<li><a href="https://huggingface.co/decapoda-research/Antares-11b-v2">decapoda-research/Antares-11b-v2</a></li>
|
115 |
+
<li><a href="https://huggingface.co/beberik/Nyxene-v3-11B">beberik/Nyxene-v3-11B</a></li>
|
116 |
+
</ul>
|
117 |
+
</div>
|
118 |
+
<div class="update-section">
|
119 |
+
<h2>Update-Log:</h2>
|
120 |
+
<p>The [Umbra Series] keeps rolling out from the [Lumosia Series] garage, aiming to be your digital Alfred with a side of Shakespeare for those RP/ERP nights.</p>
|
121 |
+
<p><strong>What's Fresh in v3?</strong></p>
|
122 |
+
<p>Didn’t reinvent the wheel, just slapped on some fancier rims. Upgraded the models and tweaked the prompts a bit. Now, Umbra's not just a general use LLM; it's also focused on spinning stories and "Stories".</p>
|
123 |
+
<p><strong>Negative Prompt Minimalism</strong></p>
|
124 |
+
<p>Got the prompts to do a bit of a diet and gym routine—more beef on the positives, trimming down the negatives as usual with a dash of my midnight musings.</p>
|
125 |
+
<p><strong>Still Guessing, Aren’t We?</strong></p>
|
126 |
+
<p>Just so we're clear, "v3" is not the messiah of updates. It’s another experiment in the saga.</p>
|
127 |
+
<p>Dive into Umbra v3 and toss your two cents my way. Your feedback is the caffeine in my code marathon.</p>
|
128 |
+
<p><strong></strong>Exl2 available by:</strong></p>
|
129 |
+
<p>EXL2-Rpcal = <a href="https://huggingface.co/AzureBlack/Umbra-v3-MoE-4x11b-exl2-8bpw-8h-rpcal" target="_blank">AzureBlack</p>
|
130 |
+
<p></p>
|
131 |
+
<p>GGUF = <a href="https://huggingface.co/mradermacher/Umbra-v3-MoE-4x11b-GGUF" target="_blank">mradermacher</p>
|
132 |
+
</div>
|
133 |
+
</div>
|
134 |
+
</body>
|
135 |
+
</html>
|