Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Computer Vision Bib Files + Scripts #54

Open
Etienne-Meunier opened this issue Oct 14, 2023 · 0 comments
Open

Computer Vision Bib Files + Scripts #54

Etienne-Meunier opened this issue Oct 14, 2023 · 0 comments

Comments

@Etienne-Meunier
Copy link

Etienne-Meunier commented Oct 14, 2023

Thank you for your wonderful tool ! Saved me a lot of time !

I used the following scripts to extract bib tex file from dplb using the API if that can be useful :

confs=['ecml', 'wacv']#['eccv', 'iccv', 'bmvc','cvpr', 'accv', 'neurips','miccai', 'ecml']
years=list(range(2000, 2024))

for conf in confs : 
    for year in years : 
        cites = ''
        for step in range(5) :
            print(step, conf, year)
            s=f'https://dblp.org/search/publ/api?q=conf/{conf}/{year}&h=1000&f={step*1000}&format=bib'
            cs = requests.get(s).text
            if cs == '' : 
                print('stop')
                break
            cites+= cs
        with open(f'/rebiber/rebiber/raw_data/{conf}{year}.bib', 'w') as f : 
            f.write(cites)

For journals you can use

journals=['ijcv']#'pami'
editions=range(100, 132)
  
s=f'https://dblp.org/search/publ/api?q=toc:db/journals/{journal}/{journal}{edition}.bht:&h=1000&f={step*1000}&format=bib'

I also attached a zip with the classical computer vision conferences / journals.
CV-bib-files.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant