usermma commited on
Commit
9745a0e
ยท
verified ยท
1 Parent(s): b7c146f

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +138 -19
index.html CHANGED
@@ -1,19 +1,138 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>ThingsAI</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ </head>
9
+ <body>
10
+
11
+ <header class="hero">
12
+ <div class="container">
13
+ <span class="badge">๐Ÿ“š README</span>
14
+ <h1>Welcome to ThingsAI</h1>
15
+ <p class="subtitle">
16
+ Building efficient, bilingual AI models that run anywhere.
17
+ </p>
18
+
19
+ <div class="flags">
20
+ ๐Ÿ‡ฎ๐Ÿ‡น Italian โ€ข ๐Ÿ‡ฌ๐Ÿ‡ง English
21
+ </div>
22
+ </div>
23
+ </header>
24
+
25
+ <main class="container">
26
+
27
+ <section class="section">
28
+ <h2>Our Models</h2>
29
+
30
+ <div class="cards">
31
+
32
+ <article class="card">
33
+ <h3>Quark-135M</h3>
34
+ <p>
35
+ A lightweight bilingual language model with
36
+ <strong>135M parameters</strong>.
37
+ </p>
38
+ <p>
39
+ Features GQA, SwiGLU, RMSNorm and RoPE.
40
+ Trained on 50B+ curated tokens.
41
+ </p>
42
+ <a href="https://huggingface.co/ThingAI/Quark-135m-Bilingual" target="_blank">
43
+ View Model โ†’
44
+ </a>
45
+ </article>
46
+
47
+ <article class="card">
48
+ <h3>Quark-270M</h3>
49
+ <p>
50
+ Our most powerful small model with
51
+ <strong>270M parameters</strong>.
52
+ </p>
53
+ <p>
54
+ Currently training with planned scaling
55
+ to 135B tokens.
56
+ </p>
57
+ <span class="status">Training Now</span>
58
+ </article>
59
+
60
+ <article class="card">
61
+ <h3>Quark-Mod</h3>
62
+ <p>
63
+ Multi-label moderation model covering
64
+ <strong>9 safety categories</strong>.
65
+ </p>
66
+ <p>
67
+ Designed for safe and practical AI deployment.
68
+ </p>
69
+ <a href="https://huggingface.co/ThingAI/Quark-Mod" target="_blank">
70
+ View Model โ†’
71
+ </a>
72
+ </article>
73
+
74
+ </div>
75
+ </section>
76
+
77
+ <section class="section">
78
+ <h2>What We Focus On</h2>
79
+
80
+ <div class="features">
81
+ <div class="feature">
82
+ <span>โšก</span>
83
+ <p>Small, efficient architectures</p>
84
+ </div>
85
+
86
+ <div class="feature">
87
+ <span>๐ŸŒ</span>
88
+ <p>Bilingual training from scratch</p>
89
+ </div>
90
+
91
+ <div class="feature">
92
+ <span>๐Ÿ”“</span>
93
+ <p>Open-source everything</p>
94
+ </div>
95
+
96
+ <div class="feature">
97
+ <span>๐Ÿ’ป</span>
98
+ <p>Real-world deployment</p>
99
+ </div>
100
+ </div>
101
+ </section>
102
+
103
+ <section class="section">
104
+ <h2>Resources</h2>
105
+
106
+ <table>
107
+ <tr>
108
+ <td>๐Ÿ“š Quark-135M-Bilingual</td>
109
+ <td>Flagship bilingual model</td>
110
+ </tr>
111
+
112
+ <tr>
113
+ <td>๐Ÿ›ก๏ธ Quark-Mod</td>
114
+ <td>Content moderation model</td>
115
+ </tr>
116
+
117
+ <tr>
118
+ <td>๐Ÿ“ HuggingFace Community</td>
119
+ <td>Models and datasets</td>
120
+ </tr>
121
+
122
+ <tr>
123
+ <td>๐Ÿ’ป GitHub</td>
124
+ <td>Code, scripts and tools</td>
125
+ </tr>
126
+ </table>
127
+ </section>
128
+
129
+ </main>
130
+
131
+ <footer>
132
+ <p>
133
+ Made with โค๏ธ by ThingsAI
134
+ </p>
135
+ </footer>
136
+
137
+ </body>
138
+ </html>