Update README.md
Browse files
README.md
CHANGED
@@ -1,39 +1,125 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
-
|
|
|
|
|
|
|
9 |
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
- repetition_penalty: 1.05
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|