acl-org / acl-org/acl-anthology

Duplicate paper titles

Open
#8,660 0 comments 0 reactions 0 assignees View on GitHub
data-quality
Dominant language
Python
Stars
796
Forks
408
Avg merge
3d 13h
Merged PRs (30d)
34

Description

This code identifies nearly 600 duplicate paper titles:

```py
titles = set(); duplicates = set(); idmap = {}
for p in anthology.papers():
t = str(p.title)
if t in titles:
duplicates.add(t)
else:
titles.add(t)
idmap.setdefault(t, set()).add(p.full_id)
for t in sorted(' '.join(sorted(idmap[t])) + ' ' + t for t in duplicates):
print(t)
```

#8659 addresses 186 of these. That appears to be the only duplicated proceedings.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.