Steelskull commited on
Commit
2350116
1 Parent(s): 665eef6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -1
README.md CHANGED
@@ -7,4 +7,107 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ <!DOCTYPE html>
11
+ <style>
12
+ body {
13
+ font-family: 'Quicksand', sans-serif;
14
+ background: linear-gradient(135deg, #2E3440 0%, #1A202C 100%);
15
+ color: #D8DEE9;
16
+ margin: 0;
17
+ padding: 0;
18
+ font-size: 16px;
19
+ }
20
+
21
+ .container {
22
+ width: 80%;
23
+ max-width: 800px;
24
+ margin: 20px auto;
25
+ background-color: rgba(255, 255, 255, 0.02);
26
+ padding: 20px;
27
+ border-radius: 12px;
28
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
29
+ backdrop-filter: blur(10px);
30
+ border: 1px solid rgba(255, 255, 255, 0.1);
31
+ }
32
+
33
+ .header h1 {
34
+ font-size: 28px;
35
+ color: #ECEFF4;
36
+ margin: 0 0 20px 0;
37
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
38
+ }
39
+
40
+ .update-section {
41
+ margin-top: 30px;
42
+ }
43
+
44
+ .update-section h2 {
45
+ font-size: 24px;
46
+ color: #88C0D0;
47
+ }
48
+
49
+ .update-section p {
50
+ font-size: 16px;
51
+ line-height: 1.6;
52
+ color: #ECEFF4;
53
+ }
54
+
55
+ .info img {
56
+ width: 100%;
57
+ border-radius: 10px;
58
+ margin-bottom: 15px;
59
+ }
60
+
61
+ a {
62
+ color: #88C0D0;
63
+ text-decoration: none;
64
+ }
65
+
66
+ a:hover {
67
+ color: #A3BE8C;
68
+ }
69
+
70
+ .button {
71
+ display: inline-block;
72
+ background-color: #5E81AC;
73
+ color: #E5E9F0;
74
+ padding: 10px 20px;
75
+ border-radius: 5px;
76
+ cursor: pointer;
77
+ text-decoration: none;
78
+ }
79
+
80
+ .button:hover {
81
+ background-color: #81A1C1;
82
+ }
83
+
84
+ </style>
85
+ <html lang="en">
86
+ <head>
87
+ <meta charset="UTF-8">
88
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
89
+ <title>The Skullery Org.</title>
90
+ <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
91
+ </head>
92
+ <body>
93
+ <div class="container">
94
+ <div class="header">
95
+ <h1>The Skullery</h1>
96
+ </div>
97
+ <div class="info">
98
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64545af5ec40bbbd01242ca6/34PLLIcKFI5x6VB__dfPS.png">
99
+ <p><strong>Owner:</strong> <a href="https://huggingface.co/Steelskull" target="_blank">SteelSkull</a></p>
100
+ <p><strong>About The Skullery:</strong> a place for my more advanced experiments and finetuned models</p>
101
+ </div>
102
+ <div class="update-section">
103
+ <h2>Series:</h2>
104
+ <p>[Etheria Series] Experimental Large Merges using DLEC</p>
105
+ <p>[Celestria Series] Based on prompt sentences</p>
106
+ <p>[Umbra Series] Based on prompt keywords with a focus in General assistant and RP/ERP</p>
107
+ <p>[Lumosia Series] Based on prompt topics, with a focus on being an "All-Rounder"</p>
108
+ <p>[Aurora Series] 10.7b Base Model [Using Solar Methods]</p>
109
+ <p>[Aethora Series] Model Fine-tuned on Aether Dataset</p>
110
+ </div>
111
+ </div>
112
+ </body>
113
+ </html>