PotatoOff commited on
Commit
10351db
1 Parent(s): 2bcc526

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -34
README.md CHANGED
@@ -1,39 +1,125 @@
1
- ---
2
- license: apache-2.0
3
- language:
4
- - en
5
- ---
6
- # HamSter v0.2
 
 
 
 
 
 
7
 
8
- A Uncensored fine tune model roleplay focused of [mistralai/Mistral-7B-v0.2](https://huggingface.co/mistralai/Mistral-7B-v0.2).
 
 
 
9
 
10
- ![image/webp](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/PieKyxOEVyn0zrrNqVec_.webp)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
- - 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
13
- - Uses Llama2 prompt template with chat-instruct.
14
- - It has been fine tune with a newer dataset :)
15
- - Next one will be more interesting :}
 
16
 
17
- ### I had good results with this parameters:
18
- - temperature: 0.8
19
- - top_p: 0.75
20
- - min_p: 0
21
- - top_k: 0
22
- - repetition_penalty: 1.05
23
 
24
- ### Roleplay Test
25
-
26
- ![image/webp](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/RnozajhXn85WQYuqcVtnA.webp)
27
-
28
- ### BenchMarks on OpenLLM Leaderboard
29
- More details: [HamSter-0.1 OpenLLM BenchMarks](https://huggingface.co/datasets/open-llm-leaderboard/details_PotatoOff__HamSter-0.2)
30
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/KaeVaaLOYZb0k81BbQ2-m.png)
31
-
32
-
33
- ### BenchMarks on Ayumi's LLM Role Play & ERP Ranking
34
-
35
- More details: [Ayumi's LLM RolePlay & ERP Rankin HamSter-0.2 GGUF version Q6_K](http://ayumi.m8geil.de/results_v3/model_resp_DL_20240114_7B-Q6_K_HamSter_0_2.html)
36
-
37
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/64e7616c7df33432812e3c57/NSUmxUmDyhO9tJb-NZd8m.png)
38
-
39
- ### Have Fun :)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
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>