Skip to content

Commit 31ef64b

Browse files
committed
replace Overview -> Review
1 parent 763cf31 commit 31ef64b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/bib2readme.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Define the categories to be printed in the README
1010
VALID_CATEGORIES = {
11-
"overview": "Overview Articles",
11+
"review": "Review Articles",
1212
"software": "Software",
1313
"method": "Methodological Papers",
1414
"application": "Application Papers",
@@ -23,7 +23,7 @@
2323
![License: CC0](https://img.shields.io/badge/License-CC0_1.0-lightgrey)
2424
2525
Welcome to the Awesome Amortized Inference repository!
26-
This is a curated list of resources, including overviews, software, papers, and other resources related to amortized inference.
26+
This is a curated list of resources, including reviews, software, papers, and other resources related to amortized inference.
2727
Feel free to explore the entries below and use the provided BibTeX information for citation purposes.
2828
This is a community-driven project which is currently maintained by [Marvin Schmitt](https://www.marvinschmitt.com).
2929
Contributions are always welcome, see [`CONTRIBUTING.md`](https://github.com/bayesflow-org/awesome-amortized-inference/blob/main/CONTRIBUTING.md) for a contribution guide.
@@ -169,7 +169,7 @@ def to_string(self) -> str:
169169

170170
if self.awesome_tldr:
171171
entry_str += f"<br />_TLDR: {self.awesome_tldr}_"
172-
elif self.awesome_category in ["overview", "method", "application"]:
172+
elif self.awesome_category in ["review", "method", "application"]:
173173
entry_str += "<br />_Reading this paper? Please consider contributing a TLDR summary._"
174174

175175
if self.authors:
@@ -217,7 +217,7 @@ def create_readme(entries_by_category: Dict[str, List[Entry]]) -> str:
217217
# Add Sections
218218
for category_key, category_value in VALID_CATEGORIES.items():
219219
if category_key in entries_by_category:
220-
if category_key in ["overview", "method", "application", "uncategorized"]:
220+
if category_key in ["review", "method", "application", "uncategorized"]:
221221
entries_by_category[category_key].sort(
222222
key=lambda x: (
223223
-int(x.year) if x.year.isdigit() else float("inf"),

resources.bib

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ @article{bischoff2024practical
3636
year = {2024},
3737
journal = {Transactions on Machine Learning Research},
3838
issn = {2835-8856},
39-
awesome-category = {overview}
39+
awesome-category = {review}
4040
}
4141

4242
@misc{cannon2022investigating,
@@ -61,7 +61,7 @@ @article{cranmer2020frontier
6161
pages = {30055--30062},
6262
issn = {0027-8424, 1091-6490},
6363
doi = {10.1073/pnas.1912789117},
64-
awesome-category = {overview},
64+
awesome-category = {review},
6565
langid = {english}
6666
}
6767

@@ -176,7 +176,7 @@ @misc{lavin2022simulation
176176
primaryclass = {cs},
177177
publisher = {arXiv},
178178
archiveprefix = {arXiv},
179-
awesome-category = {overview}
179+
awesome-category = {review}
180180
}
181181

182182
@misc{zammit2024neural,
@@ -188,7 +188,7 @@ @misc{zammit2024neural
188188
primaryclass = {cs},
189189
publisher = {arXiv},
190190
archiveprefix = {arXiv},
191-
awesome-category = {overview}
191+
awesome-category = {review}
192192
}
193193

194194
@inproceedings{moon2023amortized,
@@ -225,7 +225,7 @@ @article{papamakarios2021normalizing
225225
volume = {22},
226226
number = {57},
227227
pages = {1--64},
228-
awesome-category = {overview}
228+
awesome-category = {review}
229229
}
230230

231231
@article{radev2021outbreakflow,

0 commit comments

Comments
 (0)