Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
base_model:
|
5 |
+
- arcee-ai/Virtuoso-Lite
|
6 |
+
---
|
7 |
+
<!DOCTYPE html>
|
8 |
+
<style>
|
9 |
+
body {
|
10 |
+
font-family: 'Quicksand', sans-serif;
|
11 |
+
background: linear-gradient(135deg, #FF69B4 0%, #800080 100%);
|
12 |
+
color: #FFFFFF;
|
13 |
+
margin: 0;
|
14 |
+
padding: 0;
|
15 |
+
font-size: 16px;
|
16 |
+
min-height: 100vh;
|
17 |
+
}
|
18 |
+
/* ... (rest of the CSS remains the same) */
|
19 |
+
</style>
|
20 |
+
<html lang="en">
|
21 |
+
<head>
|
22 |
+
<meta charset="UTF-8">
|
23 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
24 |
+
<title>Maestro-10B</title>
|
25 |
+
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
26 |
+
<link href="styles.css" rel="stylesheet">
|
27 |
+
</head>
|
28 |
+
<body>
|
29 |
+
<div class="container">
|
30 |
+
<div class="header">
|
31 |
+
<h1>Maestro-10B</h1>
|
32 |
+
</div>
|
33 |
+
<div class="info">
|
34 |
+
<div class="creator-section">
|
35 |
+
<div class="creator-badge">
|
36 |
+
<span class="creator-label">Created by</span>
|
37 |
+
<span class="creator-name">arcee-ai</span> </div>
|
38 |
+
</div>
|
39 |
+
<div class="model-info">
|
40 |
+
<h2>Model Information</h2>
|
41 |
+
<div class="info-card">
|
42 |
+
<div class="info-header">
|
43 |
+
<h3>Maestro-10B</h3>
|
44 |
+
<div class="model-tags">
|
45 |
+
<span class="model-tag">10B Parameters</span>
|
46 |
+
<span class="model-tag">Fine-tuned on OpenOrca</span>
|
47 |
+
</div>
|
48 |
+
</div>
|
49 |
+
<div class="model-composition">
|
50 |
+
<h4>Model Composition</h4>
|
51 |
+
<ul class="composition-list">
|
52 |
+
<li><span class="model-component base-model"><a href="https://huggingface.co/arcee-ai/Virtuoso-Lite" target="_blank">Virtuoso-Lite</a></span> Base model</li>
|
53 |
+
</ul>
|
54 |
+
</div>
|
55 |
+
<div class="model-description">
|
56 |
+
<p>Maestro-10B is a 10 billion parameter model fine-tuned from arcee-ai/Virtuoso-Lite. It was trained using 10,000 data points from the Open-Orca/OpenOrca dataset.</p>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
|
61 |
+
<h2>UGI-Benchmark Results:</h2>
|
62 |
+
<div class="benchmark-container">
|
63 |
+
<div class="benchmark-notification">
|
64 |
+
<div class="notification-content">
|
65 |
+
<span class="notification-icon">🏆</span>
|
66 |
+
<span class="notification-text">
|
67 |
+
Latest benchmark results as of [Date].
|
68 |
+
<a href="https://huggingface.co/spaces/DontPlanToEnd/UGI-Leaderboard" target="_blank" class="benchmark-link">
|
69 |
+
View Full Leaderboard →
|
70 |
+
</a>
|
71 |
+
</span>
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
|
76 |
+
<h2>Open LLM-Benchmark Results:</h2>
|
77 |
+
<div class="benchmark-container">
|
78 |
+
<div class="benchmark-notification">
|
79 |
+
<div class="notification-content">
|
80 |
+
<span class="notification-text">
|
81 |
+
Average Score: [Score]%
|
82 |
+
<a href="https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard#/?rankingMode=dynamic" target="_blank" class="benchmark-link">
|
83 |
+
View Full Leaderboard →
|
84 |
+
</a>
|
85 |
+
</span>
|
86 |
+
</div>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
|
90 |
+
</div>
|
91 |
+
</div>
|
92 |
+
</body>
|
93 |
+
</html>
|