lvwerra HF staff commited on
Commit
e0a324a
β€’
1 Parent(s): 15c3f99

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +233 -1
README.md CHANGED
@@ -7,4 +7,236 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- ![](https://huggingface.co/spaces/science/README/resolve/main/science-cat.png)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ # Hugging Face Research
11
+
12
+ The science team at Hugging Face is dedicated to advancing machine learning research in ways that maximize value for the whole community. Our work focuses on three core areas of tooling, datasets and open models:
13
+
14
+ ### πŸ› οΈ Tooling & Infrastructure
15
+
16
+ The foundation of ML research is tooling and infrastructure and we are working on a range of tools such as [datatrove](www.github.com/huggingface/datatrove), [nanotron](www.github.com/huggingface/nanotron), [TRL](www.github.com/huggingface/trl), [LeRobot](www.github.com/huggingface/lerobot), and [lighteval](www.github.com/huggingface/lighteval).
17
+
18
+ ### πŸ“‘ Datasets
19
+
20
+ High quality datasets are the powerhouse of LLMs and require special care and skills to build. We focus on building high-quality datasets such as [no-robots](https://huggingface.co/datasets/HuggingFaceH4/no_robots), [FineWeb](https://huggingface.co/datasets/HuggingFaceFW/fineweb), [The Stack](https://huggingface.co/datasets/bigcode/the-stack-v2), and [FineVideo](https://huggingface.co/datasets/HuggingFaceFV/finevideo).
21
+
22
+ ### πŸ€– Open Models
23
+
24
+ The datatsets and training recipes of most state-of-the-art models are not released. We build cutting-edge models and release the full training pipeline as well fostering more innovation and reproducibility, such as [Zephyr](https://huggingface.co/HuggingFaceH4/zephyr-7b-beta), [StarCoder2](https://huggingface.co/bigcode/starcoder2-15b), or [SmolLM2](https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B-Instruct).
25
+
26
+ ### βš™οΈ Infrastructre
27
+
28
+ The research team is organized in small teams with typically <4 people and the science cluster consists of 96 x 8xH100 nodes as well as an auto-scalable CPU cluster for dataset processing. In this setup, even a small research team can build and push out impactful artifacts.
29
+
30
+ ### πŸš€ Releases
31
+
32
+ This is the release timeline of 2024 so far (you can click on each element!):
33
+
34
+ <style>
35
+ @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600&display=swap');
36
+
37
+ .timeline-container {
38
+ max-width: 2000px;
39
+ margin: 140px auto 40px;
40
+ padding: 20px;
41
+ overflow-x: scroll;
42
+ font-family: 'DM Sans', sans-serif;
43
+ }
44
+
45
+ .timeline-container::-webkit-scrollbar {
46
+ display: none; /* Chrome, Safari, Edge */
47
+ }
48
+
49
+ .timeline {
50
+ position: relative;
51
+ min-width: 1800px; /* Minimum width before scrolling */
52
+ }
53
+
54
+ .line {
55
+ position: absolute;
56
+ width: 100%;
57
+ height: 2px;
58
+ background: #333;
59
+ bottom: 30px;
60
+ }
61
+
62
+ .timeline-items {
63
+ display: flex;
64
+ justify-content: space-between;
65
+ align-items: flex-end;
66
+ position: relative;
67
+ min-height: 200px;
68
+ }
69
+
70
+ .month-marker {
71
+ display: flex;
72
+ flex-direction: column;
73
+ align-items: center;
74
+ position: relative;
75
+ flex: 1;
76
+ }
77
+
78
+ .month-dot {
79
+ width: 12px;
80
+ height: 12px;
81
+ background: #000;
82
+ border-radius: 50%;
83
+ margin-bottom: -7px;
84
+ position: relative;
85
+ z-index: 1;
86
+ }
87
+
88
+ .month-label {
89
+ font-weight: bold;
90
+ margin-top: 10px;
91
+ }
92
+
93
+ .events-container {
94
+ position: absolute;
95
+ bottom: 40px;
96
+ left: 50%;
97
+ transform: translateX(-50%);
98
+ width: 200px;
99
+ text-align: left;
100
+ }
101
+
102
+ .event {
103
+ position: relative;
104
+ left: 92px;
105
+ margin: 8px 0;
106
+ font-size: 14px;
107
+ display: flex;
108
+ align-items: flex-start;
109
+ gap: 5px;
110
+ white-space: pre-wrap;
111
+ max-width: 150px;
112
+ }
113
+
114
+ .event img {
115
+ width: 20px;
116
+ height: 20px;
117
+ vertical-align: middle;
118
+ }
119
+
120
+ .event a {
121
+ color: #000000;
122
+ text-decoration: none;
123
+ }
124
+
125
+ .event a:hover {
126
+ color: #686868;
127
+ text-decoration: underline;
128
+ }
129
+ </style>
130
+
131
+ <div class="timeline-container">
132
+ <div class="timeline">
133
+ <div class="line"></div>
134
+ <div class="timeline-items">
135
+ <div class="month-marker">
136
+ <div class="events-container">
137
+ <div class="event">πŸ”₯ Warming up</div>
138
+ </div>
139
+ <div class="month-dot"></div>
140
+ <div class="month-label">Jan</div>
141
+ </div>
142
+ <div class="month-marker">
143
+ <div class="events-container">
144
+ <div class="event">βš™οΈ<a href="https://github.com/huggingface/nanotron/" target="_blank">Nanotron Release</a></div>
145
+ <div class="event">⭐️<a href="https://huggingface.co/datasets/bigcode/the-stack-v2" target="_blank">The Stack v2</a></div>
146
+ <div class="event">⭐️<a href="https://huggingface.co/bigcode/starcoder2-15b" target="_blank">StarCoder2</a></div>
147
+ </div>
148
+ <div class="month-dot"></div>
149
+ <div class="month-label">Feb</div>
150
+ </div>
151
+ <div class="month-marker">
152
+ <div class="events-container">
153
+ <div class="event">πŸͺ<a href="https://huggingface.co/HuggingFaceH4/zephyr-7b-gemma-v0.1" target="_blank">Zephyr Gemma</a></div>
154
+ <div class="event">πŸͺ<a href="https://huggingface.co/datasets/HuggingFaceTB/cosmopedia" target="_blank">Cosmopedia</a></div>
155
+ </div>
156
+ <div class="month-dot"></div>
157
+ <div class="month-label">Mar</div>
158
+ </div>
159
+ <div class="month-marker">
160
+ <div class="events-container">
161
+ <div class="event">🍷<a href="https://huggingface.co/datasets/HuggingFaceFW/fineweb" target="_blank">FineWeb</a></div>
162
+ <div class="event">πŸ•΅οΈ<a href="https://huggingface.co/blog/jat" target="_blank">JAT Agent</a></div>
163
+ <div class="event">πŸͺ<a href="HuggingFaceH4/zephyr-orpo-141b-A35b-v0.1" target="_blank">Zephyr Mixtral</a></div>
164
+ <div class="event">🐢<a href="https://huggingface.co/HuggingFaceM4/idefics2-8bb" target="_blank">Idefics 2</a></div>
165
+ <div class="event">πŸ†<a href="https://huggingface.co/blog/leaderboard-medicalllm" target="_blank">Community Leaderboards</a></div>
166
+ </div>
167
+ <div class="month-dot"></div>
168
+ <div class="month-label">Apr</div>
169
+ </div>
170
+ <div class="month-marker">
171
+ <div class="events-container">
172
+ <div class="event">🦾<a href="https://github.com/huggingface/lerobot" target="_blank">LeRobot Release</a></div>
173
+ <div class="event">πŸ“ˆ<a href="https://arxiv.org/abs/2405.18392" target="_blank">WSD Analysis</a></div>
174
+ </div>
175
+ <div class="month-dot"></div>
176
+ <div class="month-label">May</div>
177
+ </div>
178
+ <div class="month-marker">
179
+ <div class="events-container">
180
+ <div class="event">🍷<a href="https://huggingface.co/spaces/HuggingFaceFW/blogpost-fineweb-v1f" target="_blank">FineWeb Report</a></div>
181
+ <div class="event">🍷<a href="https://huggingface.co/datasets/HuggingFaceFW/fineweb-edu" target="_blank">FineWeb-Edu</a></div>
182
+ <div class="event">🌺<a href="https://huggingface.co/blog/finetune-florence2" target="_blank">Florence 2 Blog</a></div>
183
+ <div class="event">πŸ†<a href="https://huggingface.co/spaces/open-llm-leaderboard/blog" target="_blank">Open LLM Leaderboard v2</a></div>
184
+ <div class="event">πŸ‘©β€πŸ«<a href="https://www.youtube.com/watch?v=jm2hyJLFfN8" target="_blank">Stanford CS25</a></div>
185
+ </div>
186
+ <div class="month-dot"></div>
187
+ <div class="month-label">Jun</div>
188
+ </div>
189
+ <div class="month-marker">
190
+ <div class="events-container">
191
+ <div class="event">πŸ›Ÿ<a href="https://x.com/Haojun_Zhao14/status/1815419356408336738" target="_blank">Ring attention</a></div>
192
+ <div class="event">🦾<a href="https://x.com/RemiCadene/status/1805583409382932620" target="_blank">LeRobot TeleOps</a></div>
193
+ <div class="event">πŸ₯‡<a href="https://x.com/_lewtun/status/1808898804822720769" target="_blank">Win AIMO</a></div>
194
+ <div class="event">🐢<a href="https://huggingface.co/blog/docmatix" target="_blank">Docmatix</a></div>
195
+ <div class="event">🀏<a href="https://huggingface.co/blog/smollm" target="_blank">SmolLM</a></div>
196
+ </div>
197
+ <div class="month-dot"></div>
198
+ <div class="month-label">Jul</div>
199
+ </div>
200
+ <div class="month-marker">
201
+ <div class="events-container">
202
+ <div class="event">🦾<a href="https://github.com/huggingface/lerobot/blob/main/examples/7_get_started_with_real_robot.md" target="_blank">LeRobot Tutorial</a></div>
203
+ <div class="event">πŸ“£<a href="https://github.com/huggingface/speech-to-speech" target="_blank">Speech-to-Speech</a></div>
204
+ <div class="event">🐢<a href="https://huggingface.co/HuggingFaceM4/Idefics3-8B-Llama3" target="_blank">Idefics 3</a></div>
205
+ <div class="event">🀏<a href="https://huggingface.co/spaces/HuggingFaceTB/instant-smollm" target="_blank">Instant SmolLM</a></div>
206
+ </div>
207
+ <div class="month-dot"></div>
208
+ <div class="month-label">Aug</div>
209
+ </div>
210
+ <div class="month-marker">
211
+ <div class="events-container">
212
+ <div class="event">🦾<a href="https://x.com/alibert_s/status/1828760527730082024" target="_blank">LeRobot Video</a></div>
213
+ <div class="event">πŸŽ₯<a href="https://huggingface.co/spaces/HuggingFaceFV/FineVideo-Explorer" target="_blank">FineVideo</a></div>
214
+ <div class="event">πŸ“£<a href="https://x.com/andi_marafioti/status/1830862304906268725" target="_blank">Speech-to-Speech Multilingual</a></div>
215
+ </div>
216
+ <div class="month-dot"></div>
217
+ <div class="month-label">Sep</div>
218
+ </div>
219
+ <div class="month-marker">
220
+ <div class="events-container">
221
+ <div class="event">πŸ”Ž<a href="https://github.com/huggingface/evaluation-guidebook" target="_blank">LLM Evaluation Guidebook</a></div>
222
+ <div class="event">🦾<a href="https://x.com/Thom_Wolf/status/1851557379294286176" target="_blank">LeRobot Hackathon</a></div>
223
+ <div class="event">πŸ—ΊοΈ<a href="https://huggingface.co/spaces/HuggingFaceFW/blogpost-fine-tasks" target="_blank">FineTasks</a></div>
224
+ </div>
225
+ <div class="month-dot"></div>
226
+ <div class="month-label">Oct</div>
227
+ </div>
228
+ <div class="month-marker">
229
+ <div class="events-container">
230
+ <div class="event">🀏<a href="https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B-Instruct" target="_blank">SmolLM2</a></div>
231
+ </div>
232
+ <div class="month-dot"></div>
233
+ <div class="month-label">Nov</div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </div>
238
+
239
+ ### πŸ€— Join us!
240
+
241
+ We are actively hiring for both full-time and internships. Check out [hf.co/jobs](hf.co/jobs)
242
+