File tree Expand file tree Collapse file tree 3 files changed +58
-4
lines changed
Expand file tree Collapse file tree 3 files changed +58
-4
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ title : ' Weaver: Shrinking the Generation-Verification Gap with Weak Verifiers'
3+ authors :
4+ - key : jonsaadfalcon
5+ equal : true
6+ affiliation : Stanford
7+ - name : E. Kelly Buchanan
8+ equal : true
9+ affiliation : Stanford University
10+ - name : Mayee F. Chen
11+ equal : true
12+ affiliation : Stanford University
13+ - name : Tzu-Heng Huang
14+ affiliation : University of Wisconsin-Madison
15+ - key : brendanmclaughlin
16+ - key : tanvirbhathal
17+ - name : Shang Zhu
18+ affiliation : Together AI
19+ - name : Ben Athiwaratkun
20+ affiliation : Together AI
21+ - name : Frederic Sala
22+ affiliation : University of Wisconsin-Madison
23+ - name : Scott Linderman
24+ affiliation : Stanford University
25+ - key : azaliamirhoseini
26+ affiliation : Stanford University
27+ - name : Christopher Ré
28+ affiliation : Stanford University
29+ venue : preprint
30+ year : 2025
31+ date : 2025-06-24
32+ has_pdf : true
33+ redirect : https://hazyresearch.stanford.edu/blog/2025-06-18-weaver
34+ doi : 10.48550/arXiv.2506.18203
35+ tags :
36+ - machine learning
37+ - generative ai
38+ teaser : Weaver boosts language model performance by intelligently combining weak verifiers using weak supervision, achieving near-oracle accuracy with drastically reduced compute.
39+ materials :
40+ - name : Paper
41+ url : https://arxiv.org/abs/2506.18203
42+ type : file-pdf
43+ - name : Codebase
44+ url : https://github.com/HazyResearch/scaling-verification
45+ type : code
46+ - name : Datasets and Models
47+ url : https://huggingface.co/collections/hazyresearch/weaver-683798010b39c9653ddb9bd8
48+ type : database
49+ ---
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ authors:
1212 affiliation : Stanford University
1313 - name : Tzu-Heng Huang
1414 affiliation : University of Wisconsin-Madison
15- - name : Brendan McLaughlin
16- affiliation : Stanford University
15+ - key : brendanmclaughlin
1716 - key : tanvirbhathal
1817 - name : Shang Zhu
1918 affiliation : Together AI
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ layout: page
66 <div id =" content " class =" pure-u-1 pure-u-md-3-4 " >
77 <h1 class="title">Blogs</h1>
88
9- {% assign blogYears = site.blogs | group_by:"year" | sort: "date" | reverse %}
9+ {% assign blogYears = site.blogs | group_by:"year" | sort: "date" %}
1010 {% for year in blogYears %}
1111 <div id="year-{{year.name}}" class="year pure-g">
1212 <div class="pure-u-1-3 pure-u-md-1-5"></div>
@@ -17,7 +17,13 @@ layout: page
1717
1818 {% assign blogs = year.items | sort: 'date' | reverse %}
1919 {% for blog in blogs %}
20- {% assign url = blog.url | relative_url | replace: 'index.html', '' | default: blog.external_url %}
20+ {% if blog.redirect %}
21+ {% assign url = blog.redirect %}
22+ {% elsif blog.external_url %}
23+ {% assign url = blog.external_url %}
24+ {% else %}
25+ {% assign url = blog.url | relative_url | replace: 'index.html', '' %}
26+ {% endif %}
2127 <div id="{{blog.slug}}" class="blog pure-g" data-blog='{{ blog | jsonify_blog }}'>
2228 <div class="thumbnail pure-u-1-3 pure-u-md-1-5">
2329 <a href="{{url}}">
You can’t perform that action at this time.
0 commit comments