Skip to content

Commit d32502f

Browse files
authored
Merge branch 'main' into fix/readme-captions
2 parents 02ec70e + c9d2172 commit d32502f

41 files changed

Lines changed: 5094 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ cython_debug/
165165
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
166166
# and can be added to the global gitignore or merged into this file. For a more nuclear
167167
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168-
#.idea/
168+
.idea/
169169

170170
# PyPI configuration file
171171
.pypirc

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This work represents a step toward making LLMs more accurate, reliable, and effi
1717
<p align="center">
1818
<img src="assets/method.png" width="80%">
1919
</p>
20+
2021
<p align="center"><em>Figure 2: A schematic illustration of the training data and process. The upper part shows SFT data generation (fact injection and special tokens), while the lower part shows the SFT training process together with reinforcement learning (RL) using multiple rewards.</em></p>
2122

2223
---

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

docs/index.html

Lines changed: 693 additions & 0 deletions
Large diffs are not rendered by default.

docs/static/css/bulma-carousel.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/css/bulma-slider.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/css/bulma.css.map.txt

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

docs/static/css/bulma.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/css/fontawesome.all.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/css/index.css

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
body {
2+
font-family: 'Noto Sans', sans-serif;
3+
}
4+
5+
6+
.footer .icon-link {
7+
font-size: 25px;
8+
color: #000;
9+
}
10+
11+
.link-block a {
12+
margin-top: 5px;
13+
margin-bottom: 5px;
14+
}
15+
16+
.dnerf {
17+
font-variant: small-caps;
18+
}
19+
20+
21+
.teaser .hero-body {
22+
padding-top: 0;
23+
padding-bottom: 3rem;
24+
}
25+
26+
.teaser {
27+
font-family: 'Google Sans', sans-serif;
28+
}
29+
30+
31+
.publication-title {
32+
}
33+
34+
.publication-banner {
35+
max-height: parent;
36+
37+
}
38+
39+
.publication-banner video {
40+
position: relative;
41+
left: auto;
42+
top: auto;
43+
transform: none;
44+
object-fit: fit;
45+
}
46+
47+
.publication-header .hero-body {
48+
}
49+
50+
.publication-title {
51+
font-family: 'Google Sans', sans-serif;
52+
}
53+
54+
.publication-authors {
55+
font-family: 'Google Sans', sans-serif;
56+
}
57+
58+
.publication-venue {
59+
color: #555;
60+
width: fit-content;
61+
font-weight: bold;
62+
}
63+
64+
.publication-awards {
65+
color: #ff3860;
66+
width: fit-content;
67+
font-weight: bolder;
68+
}
69+
70+
.publication-authors {
71+
}
72+
73+
.publication-authors a {
74+
color: hsl(204, 86%, 53%) !important;
75+
}
76+
77+
.publication-authors a:hover {
78+
text-decoration: underline;
79+
}
80+
81+
.author-block {
82+
display: inline-block;
83+
}
84+
85+
.publication-banner img {
86+
}
87+
88+
.publication-authors {
89+
/*color: #4286f4;*/
90+
}
91+
92+
.publication-video {
93+
position: relative;
94+
width: 100%;
95+
height: 0;
96+
padding-bottom: 56.25%;
97+
98+
overflow: hidden;
99+
border-radius: 10px !important;
100+
}
101+
102+
.publication-video iframe {
103+
position: absolute;
104+
top: 0;
105+
left: 0;
106+
width: 100%;
107+
height: 100%;
108+
}
109+
110+
.publication-body img {
111+
}
112+
113+
.results-carousel {
114+
overflow: hidden;
115+
}
116+
117+
.results-carousel .item {
118+
margin: 5px;
119+
overflow: hidden;
120+
padding: 20px;
121+
font-size: 0;
122+
}
123+
124+
.results-carousel video {
125+
margin: 0;
126+
}
127+
128+
.slider-pagination .slider-page {
129+
background: #000000;
130+
}
131+
132+
.eql-cntrb {
133+
font-size: smaller;
134+
}
135+
136+
137+

0 commit comments

Comments
 (0)