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

show authors in a better way #13

Open
VladimirAlexiev opened this issue Jul 17, 2024 · 0 comments
Open

show authors in a better way #13

VladimirAlexiev opened this issue Jul 17, 2024 · 0 comments

Comments

@VladimirAlexiev
Copy link

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

  • The authors are shown in random order. Sort them alphabetically and add a note

Note: authors are sorted alphabetically: LPWC does not preserve the original author order

  • This shows only disambiguated authors (dct:creator -> SOA -> name).
    Also show raw author names (lpwcc:creatorName); of course these will be plain strings rather than links

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:

describe <https://linkedpaperswithcode.com/paper/a-new-gastric-histopathology-subsize-image>
  • arxiv https://arxiv.org/abs/2106.02473v6 shows 12 authors:
    Weiming Hu, Chen Li, Xiaoyan Li, Md Mamunur Rahaman, Jiquan Ma, Yong Zhang, Haoyuan Chen, Wanli Liu, Changhao Sun, Yudong Yao, Hongzan Sun, Marcin Grzegorzek
  • The order in LPWC is random because it doesn't represent "author list" or "authorship with index".
    So let's sort them and compare:
    • LPWC (R)aw authors: HaoYuan Chen, Jiquan Ma, YuDong Yao
    • LPWC (D)isambiguated authors: Changhao Sun, Chen Li, Hongzan Sun, Marcin Grzegorzek, Md Mamunur Rahaman, Wanli Liu, Weiming Hu, Xiaoyan Li, Yong Zhang
    • arxiv: (D)Changhao Sun, (D)Chen Li, (R)Haoyuan Chen, (D)Hongzan Sun, (R)Jiquan Ma, (D)Marcin Grzegorzek, (D)Md Mamunur Rahaman, (D)Wanli Liu, (D)Weiming Hu, (D)Xiaoyan Li, (D)Yong Zhang, (R)Yudong Yao

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

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