Skip to content

Commit ce3e075

Browse files
committed
split "paper" into "method" and "application"
1 parent 502c3d0 commit ce3e075

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/bib2readme.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
VALID_CATEGORIES = {
1010
"overview": "Overview Articles",
1111
"software": "Software",
12-
"paper": "Research Articles",
12+
"method": "Methodological Papers",
13+
"application": "Application Papers",
1314
"uncategorized": "Uncategorized",
1415
}
1516

@@ -193,7 +194,7 @@ def create_readme(entries_by_category: Dict[str, List[Entry]]) -> str:
193194
# Add Sections
194195
for category_key, category_value in VALID_CATEGORIES.items():
195196
if category_key in entries_by_category:
196-
if category_key in ["overview", "paper", "uncategorized"]:
197+
if category_key in ["overview", "method", "application", "uncategorized"]:
197198
entries_by_category[category_key].sort(
198199
key=lambda x: x.year if x.year.isdigit() else "0000", reverse=True
199200
)

resources.bib

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ @article{dax2023neural
88
publisher = {American Physical Society (APS)},
99
author = {Dax, Maximilian and Green, Stephen R. and Gair, Jonathan and P\"{u}rrer, Michael and Wildberger, Jonas and Macke, Jakob H. and Buonanno, Alessandra and Sch\"{o}lkopf, Bernhard},
1010
year = {2023},
11-
awesome-category = {paper},
11+
awesome-category = {method},
1212
awesome-link-paper = {http://dx.doi.org/10.1103/PhysRevLett.130.171403},
1313
}
1414

@@ -66,7 +66,7 @@ @InProceedings{radev2023jana
6666
volume = {216},
6767
series = {Proceedings of Machine Learning Research},
6868
publisher = {PMLR},
69-
awesome-category = {paper},
69+
awesome-category = {method},
7070
awesome-link-paper = {https://proceedings.mlr.press/v216/radev23a}
7171
}
7272

@@ -76,7 +76,7 @@ @misc{orozco2024aspire
7676
Year = {2024},
7777
Eprint = {arXiv:2405.05398},
7878
awesome-awesome-link-paper = {https://arxiv.org/abs/2405.05398},
79-
awesome-category = {paper}
79+
awesome-category = {method}
8080
}
8181

8282
@misc{zammit-mangion2024neural,
@@ -121,7 +121,7 @@ @article{elsemueller2024sensitivity
121121
journal={Transactions on Machine Learning Research},
122122
issn={2835-8856},
123123
year={2024},
124-
awesome-category = {paper},
124+
awesome-category = {method},
125125
awesome-link-code = {https://github.com/bayesflow-org/SA-ABI},
126126
awesome-link-paper = {https://openreview.net/forum?id=Kxtpa9rvM0},
127127
awesome-tldr = {Efficient amortized sensitivity analyses with context variables}

0 commit comments

Comments
 (0)