paperswithcode / paperswithcode-data

The full dataset behind paperswithcode.com
306 stars 32 forks source link

Links between methods and papers #9

Closed korakot closed 3 years ago

korakot commented 3 years ago

The recently released method data is useful. But please also provide links between methods and papers. Otherwise, I need to scrape it myself.

Like this colab, with excerpt below.

def list_papers(url):
     links = Soup(url).select('#papersTable td > a')
     return [a['href'] for a in links]

The colab notebook show my scraping of 5/878 methods. I don't want to load your server, so please dump the data out instead. Thanks a lot.

rstojnic commented 3 years ago

@alefnula Can you please add to the methods dump?

malteos commented 3 years ago

+1

malteos commented 3 years ago

Was this closed because it won't be fix? Because the links are still missing in the methods.json.

alefnula commented 3 years ago

@malteos The methods are added to the paper export. Every paper has a list of methods used in the paper.

malteos commented 3 years ago

Thanks! I really appreciate your work.