metaphacts / linkedpaperswithcode

Code for generating Linked Papers with Code a high-quality RDF knowledge graph with metadata about the machine learning landscape.
https://linkedpaperswithcode.com
MIT License
3 stars 0 forks source link

show authors in a better way #13

Open VladimirAlexiev opened 2 months ago

VladimirAlexiev commented 2 months ago

Look at https://linkedpaperswithcode.com/resource/?uri=https://linkedpaperswithcode.com/paper/a-new-gastric-histopathology-subsize-


TL;DR: The rest of the description belabors the second bullet above.

Let's find some papers with more disambiguated authors than raw author names:

PREFIX dct: <http://purl.org/dc/terms/>
PREFIX lpwcc: <https://linkedpaperswithcode.com/class/>
PREFIX lpwc: <https://linkedpaperswithcode.com/property/>
select * {
  {select ?paper {?paper a lpwcc:paper}}
  {select ?paper (count(*) as ?authorsRaw) {?paper lpwc:creatorName ?authorRaw} group by ?paper}
  {select ?paper (count(*) as ?authors) {?paper dct:creator ?author} group by ?paper}
  filter(?authorsRaw<?authors)
} limit 3
paper authorsRaw authors
https://linkedpaperswithcode.com/paper/a-new-gastric-histopathology-subsize-image 3 9
https://linkedpaperswithcode.com/paper/deep-learning-convolutional-networks-for 1 3
https://linkedpaperswithcode.com/paper/generating-factoid-questions-with-recurrent 1 6

Now let's look at the first one:

So the authors are partitioned into Raw (names) and disambiguated (Author)