From 1316c5266ccc00de9259cfd551a9c48adeebef5f Mon Sep 17 00:00:00 2001 From: Andrea Tagliasacchi Date: Sun, 10 Dec 2023 18:41:54 -0800 Subject: [PATCH] arxiv url redirection --- .gitignore | 3 ++- convert_to_bibtex.py | 6 +++++- pubs.json | 7 ++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9dffb75..4450043 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store -pubs \ No newline at end of file +pubs +resume.bib diff --git a/convert_to_bibtex.py b/convert_to_bibtex.py index 2ba99b4..9e8b360 100644 --- a/convert_to_bibtex.py +++ b/convert_to_bibtex.py @@ -34,7 +34,7 @@ author={AUTHORS}, institution={{INSTITUTION}}, year={YEAR}, - eprint={1912.03207}, + url={URL}, note={(arXiv preprint)}, }""" @@ -100,6 +100,10 @@ def arxiv(pub): ret = ret.replace("TITLE", pub['title']) ret = ret.replace("AUTHORS", list_to_string(pub['authors'])) ret = ret.replace("YEAR", pub['year']) + if 'arxiv' in pub: + ret = ret.replace("URL", pub['arxiv']) + else: + ret = ret.replace("URL", "https://arxiv.org") ret = ret.replace("NOTES", notes_to_string(pub['notes']) if "notes" in pub else "") return ret diff --git a/pubs.json b/pubs.json index 301b2bf..3fc7833 100644 --- a/pubs.json +++ b/pubs.json @@ -6,6 +6,9 @@ "year": "2024", "venue": "arXiv", "special": "arXiv", + "arxiv": "https://arxiv.org/abs/2311.17984", + "homepage": "https://sherwinbahmani.github.io/4dfy", + "pdf": "https://arxiv.org/pdf/2311.17984.pdf", "authors": [ "Sherwin Bahmani", "Ivan Skorokhodov", @@ -55,6 +58,8 @@ "title": "Unsupervised Keypoints from Pretrained Diffusion Models", "year": "2024", "venue": "arXiv", + "arXiv": "https://arxiv.org/abs/2312.00065", + "homepage": "https://stablekeypoints.github.io", "special": "arXiv", "authors": [ "Eric Hedlin", @@ -177,7 +182,7 @@ "Cengiz Oztireli" ], "venue": "Neural Information Processing Systems (NeurIPS)", - "arXiv": "https://arxiv.org/abs/2306.08943", + "arxiv": "https://arxiv.org/abs/2306.08943", "year": "2023", "special": "NeurIPS'23" },