PotatoOff commited on
Commit
d8a0fd0
1 Parent(s): 1036cce

Update README.md

Browse files

Model Card Update

Files changed (1) hide show
  1. README.md +171 -29
README.md CHANGED
@@ -3,33 +3,175 @@ license: apache-2.0
3
  language:
4
  - en
5
  ---
6
- # HamSter v0.1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
 
8
- A Uncensored fine tune model roleplay focused of [mistralai/Mistral-7B-v0.2](https://huggingface.co/mistralai/Mistral-7B-v0.2)...
9
- With the help of [my team](https://huggingface.co/ConvexAI).
10
-
11
- - For good performance i recommend you to use a detailled character card! Check out [Chub.ai](https://chub.ai) (There might be nsfw content on the homepage) for some premade character card
12
- - Uses Llama2 prompt template also in chat-instruct mode.
13
-
14
- ### I had good results with this parameters:
15
- - temperature: 0.8
16
- - top_p: 0.75
17
- - min_p: 0
18
- - top_k: 0
19
- - repetition_penalty: 1.05
20
-
21
- ### RolePlay Test
22
-
23
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/Mxxwp63AHWhxfSuC7ljsB.png)
24
-
25
- ### BenchMarks on OpenLLM Leaderboard
26
- More details: [HamSter-0.1 OpenLLM BenchMarks](https://huggingface.co/datasets/open-llm-leaderboard/details_PotatoOff__HamSter-0.1)
27
- ![image/webp](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/ZDFGednAQjtPQDjyvmlRU.webp)
28
-
29
-
30
- ### BenchMarks on Ayumi's LLM Role Play & ERP Ranking
31
- More details: [Ayumi's LLM RolePlay & ERP Rankin HamSter-0.1 GGUF version Q6_K](http://ayumi.m8geil.de/results_v3/model_resp_DL_20240113_7B-Q6_K_HamSter_0_1.html)
32
-
33
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/1z6u-_Iu3dXoAo-ia0KKl.png)
34
-
35
- ### Have Fun :)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  language:
4
  - en
5
  ---
6
+ <!DOCTYPE html>
7
+ <html lang="en">
8
+ <head>
9
+ <!-- MADE BY PotatoOff & LLM | https://huggingface.co/PotatoOff | Have fun and dont remove the credits <3 -->
10
+ <meta charset="UTF-8">
11
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
12
+ <title>HamSter v0.2</title>
13
+ <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
14
+ <style>
15
+ body {
16
+ font-family: 'Quicksand', sans-serif;
17
+ background-color: #1A202C;
18
+ color: #F7FAFC;
19
+ margin: 0;
20
+ padding: 20px;
21
+ font-size: 16px;
22
+ }
23
+ .container {
24
+ width: 100%;
25
+ margin: auto;
26
+ background-color: #2D3748;
27
+ padding: 20px;
28
+ border-radius: 10px;
29
+ box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
30
+ }
31
+ .header {
32
+ display: flex;
33
+ align-items: flex-start;
34
+ gap: 20px;
35
+ }
36
+ .header h1 {
37
+ font-size: 20px;
38
+ color: #E2E8F0;
39
+ }
40
+ .header img {
41
+ flex-shrink: 0;
42
+ margin-left: 25%;
43
+ width: 50%;
44
+ max-width: 50%;
45
+ border-radius: 15px;
46
+ transition: filter 0.4s ease;
47
+ }
48
+ .header img:hover {
49
+ filter: blur(2px); /* Apply a stronger blur on hover */
50
+ }
51
+ .info {
52
+ flex-grow: 1;
53
+ background-color: #2D3748;
54
+ color: #CBD5E0;
55
+ font-family: 'Fira Code', 'JetBrains Mono', monospace;
56
+ padding: 15px;
57
+ border-radius: 10px;
58
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
59
+ font-size: 14px;
60
+ line-height: 1.7;
61
+ overflow-x: auto;
62
+ margin-top: 40px;
63
+ border: 2px solid #4A90E2;
64
+ transition: box-shadow 0.3s ease;
65
+ position: relative; /* Ensure proper stacking */
66
+ }
67
+ .info:hover {
68
+ box-shadow: 0 4px 13px rgba(0, 0, 0, 0.6), 0 0 24px rgba(74, 144, 226, 0.6);
69
+ }
70
+ .info-img {
71
+ width: 100%; /* Adjust width as per your layout needs */
72
+ max-width: 400px; /* Max width to ensure it doesn't get too large */
73
+ max-height: 100%; /* Adjust height proportionally */
74
+ border-radius: 10px;
75
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
76
+ margin-left: 5%; /* Align to the right */
77
+ margin-right: 0%; /* Keep some space from the text */
78
+ display: block; /* Ensure it's properly block level for margins to work */
79
+ float: right; /* Keep it to the right */
80
+ }
81
+ .button {
82
+ display: inline-block;
83
+ background-image: linear-gradient(145deg, #F96167 0%, #F0F2D7 100%);
84
+ color: #F0F0F0;
85
+ padding: 16px 24px; /* Increased padding for bigger buttons */
86
+ border: none;
87
+ border-radius: 10px;
88
+ cursor: pointer;
89
+ text-decoration: none;
90
+ margin-left: 7%;
91
+ transition: transform 0.3s ease, box-shadow 0.3s ease, background-image 0.3s ease, color 0.3s ease, border-radius 0.3s ease; /* Enhanced transitions */
92
+ font-weight: bold; /* Make the text bold */
93
+ box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
94
+ }
95
+ .button:hover {
96
+ background-image: linear-gradient(145deg, #FB1A3E 0%, #F38555 100%); /* Vibrant to light pink gradient */
97
+ transform: scale(1.1); /* Increase size for more emphasis */
98
+ box-shadow: 0 10px 30px rgba(249, 97, 103, 0.8); /* More pronounced glowing effect */
99
+ color: #FFFFFF; /* Brighten the text color slightly */
100
+ border-radius: 15px; /* Soften the corners a bit more for a pill-like effect */
101
+ }
102
+ @keyframes pulse {
103
+ 0% {
104
+ transform: scale(1);
105
+ opacity: 1;
106
+ }
107
+ 50% {
108
+ transform: scale(1.05);
109
+ opacity: 0.85;
110
+ }
111
+ 100% {
112
+ transform: scale(1);
113
+ opacity: 1;
114
+ }
115
+ }
116
+ </style>
117
+ </head>
118
 
119
+ <body>
120
+ <div class="container">
121
+ <div class="header">
122
+ <div class="info" style="margin-top: 5px;">
123
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/wLR5i-DEGozjE26TNklqG.png" alt="Image">
124
+ <h1 class="product-name" style="margin: 10px">Meet HamSter-0.1 🐹</h1>
125
+ <p>
126
+ 👋 Uncensored fine tune model roleplay focused of "mistralai/Mistral-7B-v0.2"and first model of the HamSter series. Made with the help of my team <a href="https://huggingface.co/ConvexAI" target="_blank">ConvexAI.</a><br><br>
127
+ 🚀 For optimal performance, I recommend using a detailed character card! (There is NSFW chub.ai) Check out <a href="https://chub.ai" target="_blank">Chub.ai</a> for some character cards.<br><br>
128
+ 🤩 Uses the Llama2 prompt template with chat instructions.<br><br>
129
+ 🔥 Produce spicy content.<br><br>
130
+ 😄 -> Check out <a href="https://huggingface.co/PotatoOff/HamSter-0.2" target="_blank">HamSter 0.2</a> latest model of the HamSter series. Check it out!<br>
131
+ </p>
132
+ <div>
133
+ <a href="https://huggingface.co/collections/PotatoOff/hamster-01-65a31043b7897304be56474d" class="button">HamSter 0.1 Quants</a>
134
+ <a href="https://discord.com/invite/9y7KxZxcZx" class="button">Discord Server</a>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ <div style="overflow: hidden; position: relative">
139
+ <div class="info"style="overflow: hidden; margin:-left 0% margin-top: 20px;">
140
+ <a href="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/Mxxwp63AHWhxfSuC7ljsB.png" target="_blank">
141
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/Mxxwp63AHWhxfSuC7ljsB.png" alt="Roleplay Test" style="width: auto; max-width: 37%; max-height: 100%; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); margin-left: 0%; display: block; float: right;">
142
+ </a>
143
+ <h2 style="margin-top: 0;">I had good results with these parameters:</h2>
144
+ <ul style="margin-top: 0;">
145
+ <p>> temperature: 0.8 <</p>
146
+ <p>> top_p: 0.75</p>
147
+ <p>> min_p: 0</p>
148
+ <p>> top_k: 0</p>
149
+ <p>> repetition_penalty: 1.05</p>
150
+ </ul>
151
+ </div>
152
+ </div>
153
+ <div style="overflow: hidden; position: relative;">
154
+ <div class="info" style="overflow: hidden; margin-top: 20px;">
155
+ <h2 style="margin-top: 0;">BenchMarks on OpenLLM Leaderboard</h2>
156
+ <a href="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/ZDFGednAQjtPQDjyvmlRU.webp" target="_blank">
157
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/ZDFGednAQjtPQDjyvmlRU.webp" alt="OPEN LLM BENCHMARK" style="info-img; border-radius: 10px">
158
+ </a>
159
+ <p>More details: <a href="https://huggingface.co/datasets/open-llm-leaderboard/details_PotatoOff__HamSter-0.1" target="_blank">HamSter-0.1 OpenLLM BenchMarks</a></p>
160
+ </div>
161
+ </div>
162
+ <div style="overflow: hidden; position: relative;">
163
+ <div class="info" style="overflow: hidden; margin-top: 20px;">
164
+ <h2 style="margin-top: 0;">BenchMarks on Ayumi's LLM Role Play & ERP Ranking</h2>
165
+ <a href="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/1z6u-_Iu3dXoAo-ia0KKl.png" target="_blank">
166
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/1z6u-_Iu3dXoAo-ia0KKl.png" alt="Ayumi's LLM Role Play & ERP Ranking" class="info-img" style="width: 100%; height: auto;">
167
+ </a>
168
+ <p>More details: <a href="http://ayumi.m8geil.de/results_v3/model_resp_DL_20240113_7B-Q6_K_HamSter_0_1.html">Ayumi's LLM RolePlay & ERP Rankin HamSter-0.1 GGUF version Q6_K</a></p>
169
+ </div>
170
+ </div>
171
+ <div style="font-family: 'Arial', sans-serif; font-weight: bold; text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);">
172
+ <p style="display: inline; font-size: 17px; margin: 0;">Have Fun</p>
173
+ <p style="display: inline; color: #E2E8F0; margin-bottom: 20px; animation: pulse 2s infinite; font-size: 17px;">💖</p>
174
+ </div>
175
+ </div>
176
+ </body>
177
+ </html>