edbeeching
commited on
Commit
•
4287f31
1
Parent(s):
33e1a4e
adds readme and authors
Browse files- README.md +2 -2
- app/src/index.html +11 -18
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title: 'Scaling
|
3 |
emoji: 📝
|
4 |
colorFrom: blue
|
5 |
colorTo: indigo
|
@@ -7,5 +7,5 @@ sdk: docker
|
|
7 |
pinned: false
|
8 |
header: mini
|
9 |
app_port: 8080
|
10 |
-
thumbnail: https://
|
11 |
---
|
|
|
1 |
---
|
2 |
+
title: 'Scaling test-time compute'
|
3 |
emoji: 📝
|
4 |
colorFrom: blue
|
5 |
colorTo: indigo
|
|
|
7 |
pinned: false
|
8 |
header: mini
|
9 |
app_port: 8080
|
10 |
+
thumbnail: https://HuggingFaceH4/blogpost-scaling-test-time-compute/resolve/main/app/assets/images/banner.png
|
11 |
---
|
app/src/index.html
CHANGED
@@ -13,37 +13,30 @@
|
|
13 |
<body>
|
14 |
<d-front-matter>
|
15 |
<script id='distill-front-matter' type="text/json">{
|
16 |
-
"title": "
|
17 |
-
"description": "This blog
|
18 |
-
"published": "
|
19 |
"affiliation": {"name": "HuggingFace"},
|
20 |
"authors": [
|
21 |
{
|
22 |
-
"author":"
|
23 |
-
"authorURL":"https://huggingface.co/
|
24 |
},
|
25 |
{
|
26 |
-
"author":"
|
27 |
-
"authorURL":"https://huggingface.co/
|
28 |
},
|
29 |
{
|
30 |
-
"author":"
|
31 |
-
"authorURL":"https://huggingface.co/
|
32 |
},
|
33 |
-
|
34 |
-
"author":"Nathan Habib",
|
35 |
-
"authorURL":"https://huggingface.co/SaylorTwift"
|
36 |
-
},
|
37 |
-
{
|
38 |
-
"author":"Thomas Wolf",
|
39 |
-
"authorURL":"https://huggingface.co/thomwolf"
|
40 |
-
}
|
41 |
]
|
42 |
}</script>
|
43 |
</d-front-matter>
|
44 |
|
45 |
<d-title>
|
46 |
-
<h1 class="l-page" style="text-align: center; display: none;"
|
47 |
<div id="title-plot" class="main-plot-container l-page">
|
48 |
<figure>
|
49 |
<img src="assets/images/banner.png" alt="FineTasks">
|
|
|
13 |
<body>
|
14 |
<d-front-matter>
|
15 |
<script id='distill-front-matter' type="text/json">{
|
16 |
+
"title": "Scaling test-time compute",
|
17 |
+
"description": "This blog presents our work on scaling test-time compute for large language models, we share an open implementation of DeepMind's Scaling Test Time Compute paper and introduce a new method; parallel beamsearch that improves scaling performance.",
|
18 |
+
"published": "December 15, 2024",
|
19 |
"affiliation": {"name": "HuggingFace"},
|
20 |
"authors": [
|
21 |
{
|
22 |
+
"author":"Edward Beeching",
|
23 |
+
"authorURL":"https://huggingface.co/edbeeching"
|
24 |
},
|
25 |
{
|
26 |
+
"author":"Sasha Rush",
|
27 |
+
"authorURL":"https://huggingface.co/srush"
|
28 |
},
|
29 |
{
|
30 |
+
"author":"Lewis Tunstall",
|
31 |
+
"authorURL":"https://huggingface.co/lewtun"
|
32 |
},
|
33 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
]
|
35 |
}</script>
|
36 |
</d-front-matter>
|
37 |
|
38 |
<d-title>
|
39 |
+
<h1 class="l-page" style="text-align: center; display: none;">Scaling test-time compute</h1>
|
40 |
<div id="title-plot" class="main-plot-container l-page">
|
41 |
<figure>
|
42 |
<img src="assets/images/banner.png" alt="FineTasks">
|