|
8 | 8 |
|
9 | 9 | # Define the categories to be printed in the README
|
10 | 10 | VALID_CATEGORIES = {
|
11 |
| - "overview": "Overview Articles", |
| 11 | + "review": "Review Articles", |
12 | 12 | "software": "Software",
|
13 | 13 | "method": "Methodological Papers",
|
14 | 14 | "application": "Application Papers",
|
|
23 | 23 | 
|
24 | 24 |
|
25 | 25 | 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. |
27 | 27 | Feel free to explore the entries below and use the provided BibTeX information for citation purposes.
|
28 | 28 | This is a community-driven project which is currently maintained by [Marvin Schmitt](https://www.marvinschmitt.com).
|
29 | 29 | 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:
|
169 | 169 |
|
170 | 170 | if self.awesome_tldr:
|
171 | 171 | 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"]: |
173 | 173 | entry_str += "<br />_Reading this paper? Please consider contributing a TLDR summary._"
|
174 | 174 |
|
175 | 175 | if self.authors:
|
@@ -217,7 +217,7 @@ def create_readme(entries_by_category: Dict[str, List[Entry]]) -> str:
|
217 | 217 | # Add Sections
|
218 | 218 | for category_key, category_value in VALID_CATEGORIES.items():
|
219 | 219 | 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"]: |
221 | 221 | entries_by_category[category_key].sort(
|
222 | 222 | key=lambda x: (
|
223 | 223 | -int(x.year) if x.year.isdigit() else float("inf"),
|
|
0 commit comments