NeuralNovel
commited on
Commit
•
643a62a
1
Parent(s):
5fd365c
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
---
|
4 |
+
<!DOCTYPE html>
|
5 |
+
<html lang="en">
|
6 |
+
<head>
|
7 |
+
<meta charset="UTF-8">
|
8 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
9 |
+
<title>Model Card</title>
|
10 |
+
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
11 |
+
<style>
|
12 |
+
body {
|
13 |
+
font-family: 'Quicksand', sans-serif;
|
14 |
+
background-color: #1A202C;
|
15 |
+
color: #D8DEE9;
|
16 |
+
margin: 0;
|
17 |
+
padding: 0; /* Remove default padding */
|
18 |
+
font-size: 26px;
|
19 |
+
background: linear-gradient(135deg, #2E3440 0%, #1A202C 100%);
|
20 |
+
}
|
21 |
+
p {
|
22 |
+
padding-left: 10px
|
23 |
+
}
|
24 |
+
.container {
|
25 |
+
width: 100%;
|
26 |
+
margin: auto;
|
27 |
+
background-color: rgb(255 255 255 / 1%);
|
28 |
+
padding: 20px 30px 40px; /* Add padding below the image only */
|
29 |
+
padding-right: 32px;
|
30 |
+
border-radius: 12px;
|
31 |
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
32 |
+
backdrop-filter: blur(10px);
|
33 |
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
34 |
+
}
|
35 |
+
.header {
|
36 |
+
display: flex;
|
37 |
+
align-items: center;
|
38 |
+
justify-content: space-between;
|
39 |
+
gap: 20px;
|
40 |
+
}
|
41 |
+
img {
|
42 |
+
border-radius: 10px 10px 0 0!important;
|
43 |
+
padding-left: 0px !important;
|
44 |
+
}
|
45 |
+
.header h1 {
|
46 |
+
font-size: 28px;
|
47 |
+
color: #ECEFF4;
|
48 |
+
margin: 0;
|
49 |
+
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
50 |
+
}
|
51 |
+
.info {
|
52 |
+
background-color: rgba(255, 255, 255, 0.05);
|
53 |
+
color: #AEBAC7;
|
54 |
+
border-radius: 12px;
|
55 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
56 |
+
font-size: 14px;
|
57 |
+
line-height: 1.6;
|
58 |
+
margin-left: 5px;
|
59 |
+
overflow-x: auto;
|
60 |
+
margin-top: 20px; /* Adjusted margin */
|
61 |
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
62 |
+
transition: background-color 0.6s ease; /* Smooth transition over 0.5 seconds */
|
63 |
+
}
|
64 |
+
.info:hover {
|
65 |
+
}
|
66 |
+
.info img {
|
67 |
+
width: 100%;
|
68 |
+
border-radius: 10px 10px 0 0;
|
69 |
+
margin-top: -20px; /* Negative margin to overlap container margin */
|
70 |
+
}
|
71 |
+
a {
|
72 |
+
color: #88C0D0;
|
73 |
+
text-decoration: none;
|
74 |
+
transition: color 0.3s ease;
|
75 |
+
position: relative;
|
76 |
+
}
|
77 |
+
a:hover {
|
78 |
+
color: #A3BE8C;
|
79 |
+
text-decoration: none;
|
80 |
+
}
|
81 |
+
a::before {
|
82 |
+
content: '';
|
83 |
+
position: absolute;
|
84 |
+
width: 100%;
|
85 |
+
height: 2px;
|
86 |
+
bottom: 0;
|
87 |
+
left: 0;
|
88 |
+
background-color: #A3BE8C;
|
89 |
+
visibility: hidden;
|
90 |
+
transform: scaleX(0);
|
91 |
+
transition: all 0.3s ease-in-out;
|
92 |
+
}
|
93 |
+
a:hover::before {
|
94 |
+
visibility: visible;
|
95 |
+
transform: scaleX(1);
|
96 |
+
}
|
97 |
+
.button {
|
98 |
+
display: inline-block;
|
99 |
+
background-color: #5E81AC;
|
100 |
+
color: #E5E9F0;
|
101 |
+
padding: 10px 20px;
|
102 |
+
border-radius: 5px;
|
103 |
+
cursor: pointer;
|
104 |
+
text-decoration: none;
|
105 |
+
transition: background-color 0.3s ease;
|
106 |
+
}
|
107 |
+
.button:hover {
|
108 |
+
background-color: #81A1C1;
|
109 |
+
}
|
110 |
+
</style>
|
111 |
+
</head>
|
112 |
+
<body>
|
113 |
+
<div class="container">
|
114 |
+
<div class="header">
|
115 |
+
<h1>Ignis-7B-DPO-Laser</h1>
|
116 |
+
</div>
|
117 |
+
<div class="info">
|
118 |
+
<img src="https://i.ibb.co/C8jZ6FW/OIG3.jpg" style="border-radius: 10px;">
|
119 |
+
<p><strong>Creator:</strong> <a href="https://huggingface.co/NeuralNovel" target="_blank">NeuralNovel</a></p>
|
120 |
+
<p><strong>Community Organization:</strong> <a href="https://huggingface.co/ConvexAI" target="_blank">ConvexAI</a></p>
|
121 |
+
<p><strong>Discord:</strong> <a href="https://discord.gg/rJXGjmxqzS" target="_blank">Join us on Discord</a></p>
|
122 |
+
</head>
|
123 |
+
<body>
|
124 |
+
<div>
|
125 |
+
<div>
|
126 |
+
<p><strong>Ignis-7B-DPO-Laser</strong> The Neural-DPO dataset, inspired by orca_dpo_pairs. Contains comprehensive questions and answers with a specific focus on neural networks.</p>
|
127 |
+
<p>It encompasses a rich array of subjects, drawing from diverse domains such as literature, scientific research, and theoretical inquiries.</p>
|
128 |
+
<p>This diversity fosters a wide spectrum of applications, including natural language understanding, contextual comprehension, and educational enrichment.</p>
|
129 |
+
<p><strong>Source Data:</strong></p>
|
130 |
+
<ul>
|
131 |
+
<li>orca_dpo_pairs (Inspiration)</li>
|
132 |
+
<li>Academic Papers Corpus</li>
|
133 |
+
<li>Novel Collections</li>
|
134 |
+
<li>General Q&A</li>
|
135 |
+
</ul>
|
136 |
+
<p><strong>Phrases Removed:</strong></p>
|
137 |
+
<p>To enhance the dataset's coherence and relevance across varied contexts, certain phrases have been selectively omitted.</p>
|
138 |
+
<ul>
|
139 |
+
<li>Couldn't help but</li>
|
140 |
+
<li>Can't resist</li>
|
141 |
+
<li>I'm sorry, but</li>
|
142 |
+
<li>As an AI</li>
|
143 |
+
<li>However, it is important to</li>
|
144 |
+
<li>Cannot provide</li>
|
145 |
+
<li>And others</li>
|
146 |
+
</ul>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
</body>
|