PotatoOff commited on
Commit
26ecfd9
1 Parent(s): 10351db

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +101 -78
README.md CHANGED
@@ -1,3 +1,8 @@
 
 
 
 
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
@@ -6,120 +11,138 @@
6
  <title>HamSter v0.2</title>
7
  <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
8
  <style>
9
- @keyframes typing {
10
- from { width: 0; }
11
- to { width: 100%; }
12
- }
13
-
14
- @keyframes fadeIn {
15
- 0% { opacity: 0; }
16
- 100% { opacity: 1; }
17
- }
18
-
19
  body {
20
  font-family: 'Quicksand', sans-serif;
21
  background-color: #1A202C;
22
  color: #F7FAFC;
23
  margin: 0;
24
  padding: 20px;
25
- font-size: 15px; /* Adjusted font size */
26
  }
27
  .container {
28
- max-width: 100%; /* Use more width */
29
  margin: auto;
30
  background-color: #2D3748;
31
  padding: 20px;
32
  border-radius: 10px;
33
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
34
- transition: transform 0.3s ease; /* Animation */
35
  }
36
- .container:hover {
37
- transform: translateY(-5px); /* Animation */
38
- }
39
- .header img:first-child {
40
- animation: fadeIn 2s ease-out; /* Animation for the first image */
41
- max-width: 100%; /* Ensure image is responsive */
42
  }
43
  .header h1 {
44
- overflow: hidden; /* Ensures the typing effect is visible */
45
- border-right: .15em solid orange; /* The cursor */
46
- white-space: nowrap; /* Keeps the text in a single line */
47
- margin: 0 auto; /* Centers the header */
48
- letter-spacing: .15em; /* Adjust letter spacing */
49
- animation:
50
- typing 3.5s steps(40, end),
51
- blink-caret .75s step-end infinite;
52
  }
53
-
54
- /* Typing effect */
55
- @keyframes typing {
56
- from { width: 0; }
57
- to { width: 100%; }
 
 
 
58
  }
59
-
60
- /* Cursor animations */
61
- @keyframes blink-caret {
62
- from, to { border-color: transparent; }
63
- 50% { border-color: orange; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  }
65
-
66
  .button {
67
  display: inline-block;
68
- background-image: linear-gradient(145deg, #6B7280 0%, #4A5568 100%);
69
- color: #FFFFFF;
70
- padding: 12px 24px; /* Increased padding for bigger buttons */
71
  border: none;
72
- border-radius: 5px;
73
  cursor: pointer;
74
  text-decoration: none;
75
- margin-right: 10px;
76
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Added shadow */
77
- transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Animation */
 
 
78
  }
79
  .button:hover {
80
- background-color: #4A5568; /* Animation */
81
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
82
- }
83
- .info {
84
- font-size: 15px; /* Adjusted font size */
85
- line-height: 1.6; /* Adjusted for better readability */
86
- }
87
- .info strong {
88
- font-weight: 600;
89
- }
90
- .info a {
91
- color: #63B3ED;
92
- text-decoration: none;
93
- }
94
- .info a:hover {
95
- text-decoration: underline;
96
- }
97
- .title {
98
- color: #CBD5E0;
99
- margin-top: 20px;
100
  }
101
  </style>
 
102
  </head>
103
  <body>
104
  <div class="container">
105
  <div class="header">
106
  <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/PieKyxOEVyn0zrrNqVec_.webp" alt="Image">
107
- <div>
108
- <h1>HamSter-0.2</h1> <!-- Smooth typing animation applied -->
109
- <p class="title">Licensed under Apache-2.0</p> <!-- Title with Apache-2.0 text -->
110
- <p class="info">
111
- - For optimal performance, we recommend using a detailed character card! Check out <a href="https://chub.ai" target="_blank">Chub.ai</a> (Please note there might be NSFW content on the homepage) for some beautifully designed character cards.<br>
112
- - Our chat assistant uses the Llama2 prompt template with chat instructions.<br>
113
- - It has been fine-tuned with a newer dataset for even better results.<br>
114
- - Stay tuned for more exciting updates! 😄
115
  </p>
116
  <div>
117
- <a href="#" class="button">Learn More</a>
118
- <a href="#" class="button" style="background-image: linear-gradient(145deg, #E53E3E 0%, #9B2C2C 100%);">Get Started</a>
119
  </div>
120
  </div>
121
  </div>
122
- <!-- Content continues -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
124
  </body>
125
- </html>
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ ---
6
  <!DOCTYPE html>
7
  <html lang="en">
8
  <head>
 
11
  <title>HamSter v0.2</title>
12
  <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
13
  <style>
 
 
 
 
 
 
 
 
 
 
14
  body {
15
  font-family: 'Quicksand', sans-serif;
16
  background-color: #1A202C;
17
  color: #F7FAFC;
18
  margin: 0;
19
  padding: 20px;
20
+ font-size: 16px;
21
  }
22
  .container {
23
+ width: 100%;
24
  margin: auto;
25
  background-color: #2D3748;
26
  padding: 20px;
27
  border-radius: 10px;
28
+ box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 
29
  }
30
+ .header {
31
+ display: flex;
32
+ align-items: flex-start;
33
+ gap: 30px; /* Increased spacing */
34
+ flex-wrap: wrap; /* Ensure responsiveness */
 
35
  }
36
  .header h1 {
37
+ font-size: 24px;
38
+ color: #E2E8F0;
 
 
 
 
 
 
39
  }
40
+ .header img {
41
+ flex-shrink: 0; /* Prevent resizing */
42
+ max-width: 50%; /* Adjust based on preference */
43
+ border-radius: 15px;
44
+ max-height: 560px;
45
+ margin-left: 2%;
46
+ margin-right: 2%;
47
+ transition: filter 0.4s ease; /* Smooth transition for the filter */
48
  }
49
+ .header img:hover {
50
+ filter: blur(1px); /* Apply a stronger blur on hover */
51
+ }
52
+ .info {
53
+ background-color: #2D3748; /* Darker shade for elegant dark mode */
54
+ color: #CBD5E0; /* Lighter text color for contrast */
55
+ font-family: 'Fira Code', 'JetBrains Mono', monospace; /* Fira Code or JetBrains Mono font */
56
+ padding: 30px 20px; /* Increased top margin and padding for spaciousness */
57
+ border-radius: 10px; /* Rounded corners for a more elegant look */
58
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Darker box shadow with increased opacity */
59
+ font-size: 17px; /* Slightly larger font size for readability */
60
+ line-height: 1.7; /* Improved line height for readability */
61
+ max-width: 52%; /* Adjust based on preference */
62
+ overflow-x: auto;
63
+ margin-top: 40px; /* Added more margin on the top */
64
+ border: 2px solid #4A90E2; /* Border with a suitable color for a 3D effect */
65
+ transition: box-shadow 0.3s ease; /* Smooth transition for the box shadow */
66
+ }
67
+ .info:hover {
68
+ box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6), 0 0 24px rgba(74, 144, 226, 0.6); /* Glowing box shadow on hover */
69
  }
 
70
  .button {
71
  display: inline-block;
72
+ background-image: linear-gradient(145deg, #F96167 0%, #F0F2D7 100%);
73
+ color: #F0F0F0;
74
+ padding: 16px 24px; /* Increased padding for bigger buttons */
75
  border: none;
76
+ border-radius: 10px;
77
  cursor: pointer;
78
  text-decoration: none;
79
+ margin-left: 60px;
80
+ transition: transform 0.3s ease, box-shadow 0.3s ease, background-image 0.3s ease; /* Updated transition */
81
+ /* Added for a more sophisticated look */
82
+ font-weight: bold; /* Make the text bold */
83
+ box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
84
  }
85
  .button:hover {
86
+ background-image: linear-gradient(145deg, #FB1A3E 0%, #F38555 100%); /* Vibrant to light pink gradient */
87
+ transform: scale(1.07); /* Slightly increase size for emphasis */
88
+ box-shadow: 0 5px 25px rgba(249, 97, 103, 0.75); /* Adjusted glowing effect to match the button color */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
90
  </style>
91
+
92
  </head>
93
  <body>
94
  <div class="container">
95
  <div class="header">
96
  <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/PieKyxOEVyn0zrrNqVec_.webp" alt="Image">
97
+ <div class="info">
98
+ <h1>HamSter 0.2</h1>
99
+ <p>
100
+ 👋 Uncensored fine tune model roleplay focused of "mistralai/Mistral-7B-v0.2 with the help of my team <a href="https://huggingface.co/ConvexAI" target="_blank">ConvexAI</a><br><br>
101
+ 🚀 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>
102
+ 🤩 Uses the Llama2 prompt template with chat instructions.<br><br>
103
+ 🔥 Fine-tuned with a newer dataset for even better results.<br><br>
104
+ 😄 Next one will be more interesting!
105
  </p>
106
  <div>
107
+ <a href="https://huggingface.co/collections/PotatoOff/hamster-02-65abc987a92a64ef5bb13148" class="button">HamSter 0.2 Quants</a>
108
+ <a href="https://discord.com/invite/9y7KxZxcZx" class="button">Discord Server</a>
109
  </div>
110
  </div>
111
  </div>
112
+ <!-- Additional content adjusted for consistency -->
113
+ <div class="container">
114
+ <div style="overflow: hidden; position: relative;">
115
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/RnozajhXn85WQYuqcVtnA.webp" 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;">
116
+ <div class="info" style="overflow: hidden; padding-right: 10%;">
117
+ <h2 style="margin-top: 0;">I had good results with these parameters:</h2>
118
+ <ul style="margin-top: 0;">
119
+ <p>> temperature: 0.8</p>
120
+ <p>> top_p: 0.75</p>
121
+ <p>> min_p: 0</p>
122
+ <p>> top_k: 0</p>
123
+ <p>> repetition_penalty: 1.05</p>
124
+ <li>- - - - - - - - - - - - - - - - - - - - - ></li>
125
+ </ul>
126
+ </div>
127
+ </div>
128
+ <div style="overflow: hidden; position: relative;">
129
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/KaeVaaLOYZb0k81BbQ2-m.png" alt="OPEN LLM BENCHMARK" style="width: auto; max-width: 60%; max-height: 100%; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); margin-right: 3%; display: block; float: left;">
130
+ <div class="info" style="overflow: hidden; padding-right: 5%;">
131
+ <h2 style="margin-top: 0;">BenchMarks on OpenLLM Leaderboard</h2>
132
+ <p>More details: <a href="https://huggingface.co/datasets/open-llm-leaderboard/details_PotatoOff__HamSter-0.2" target="_blank">HamSter-0.2 OpenLLM BenchMarks</a></p>
133
+ </div>
134
  </div>
135
+ <div style="overflow: hidden; position: relative;">
136
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/NSUmxUmDyhO9tJb-NZd8m.png" alt="Ayumi's LLM Role Play & ERP Ranking" 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;">
137
+ <div class="info" style="overflow: hidden; padding-right: 10%;">
138
+ <h2 style="margin-top: 0;">BenchMarks on Ayumi's LLM Role Play & ERP Ranking</h2>
139
+ <ul style="margin-top: 0;">
140
+ <li>< - - - - - - - - - - - - - - - - - - - - - -</li>
141
+ </ul>
142
+ </div>
143
+ </div>
144
+ <h2 style="color: #E2E8F0; margin-bottom: 20px;">Have Fun :)</h2>
145
+ </div>
146
+
147
  </body>
148
+ </html>