shaurya0512 commited on
Commit
64e932e
·
1 Parent(s): e1519c7

- datacard details added

Browse files
Files changed (1) hide show
  1. README.md +114 -50
README.md CHANGED
@@ -1,53 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  Dataframe with extracted metadata (table below with details) and full text of the collection for analysis : **size 489M**
2
- | **Column name** | **Description** |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  | :---------------: | :---------------------------: |
4
- | `acl_id` | unique ACL id |
5
- | `abstract` | abstract extracted by GROBID |
6
- | `full_text` | full text extracted by GROBID |
7
- | `corpus_paper_id` | Semantic Scholar ID |
8
- | `pdf_hash` | sha1 hash of the pdf |
9
- | `numcitedby` | number of citations from S2 |
10
- | `url` | link of publication |
11
- | `publisher` | - |
12
- | `address` | Address of conference |
13
- | `year` | - |
14
- | `month` | - |
15
- | `booktitle` | - |
16
- | `author` | list of authors |
17
- | `title` | title of paper |
18
- | `pages` | - |
19
- | `doi` | - |
20
- | `number` | - |
21
- | `volume` | - |
22
- | `journal` | - |
23
- | `editor` | - |
24
- | `isbn` | - |
25
-
26
- ```python
27
- >>> import pandas as pd
28
- >>> df = pd.read_parquet('acl-publication-info.74k.parquet')
29
- >>> df
30
- acl_id abstract full_text corpus_paper_id pdf_hash ... number volume journal editor isbn
31
- 0 O02-2002 There is a need to measure word similarity whe... There is a need to measure word similarity whe... 18022704 0b09178ac8d17a92f16140365363d8df88c757d0 ... None None None None None
32
- 1 L02-1310 8220988 8d5e31610bc82c2abc86bc20ceba684c97e66024 ... None None None None None
33
- 2 R13-1042 Thread disentanglement is the task of separati... Thread disentanglement is the task of separati... 16703040 3eb736b17a5acb583b9a9bd99837427753632cdb ... None None None None None
34
- 3 W05-0819 In this paper, we describe a word alignment al... In this paper, we describe a word alignment al... 1215281 b20450f67116e59d1348fc472cfc09f96e348f55 ... None None None None None
35
- 4 L02-1309 18078432 011e943b64a78dadc3440674419821ee080f0de3 ... None None None None None
36
- ... ... ... ... ... ... ... ... ... ... ... ...
37
- 73280 P99-1002 This paper describes recent progress and the a... This paper describes recent progress and the a... 715160 ab17a01f142124744c6ae425f8a23011366ec3ee ... None None None None None
38
- 73281 P00-1009 We present an LFG-DOP parser which uses fragme... We present an LFG-DOP parser which uses fragme... 1356246 ad005b3fd0c867667118482227e31d9378229751 ... None None None None None
39
- 73282 P99-1056 The processes through which readers evoke ment... The processes through which readers evoke ment... 7277828 924cf7a4836ebfc20ee094c30e61b949be049fb6 ... None None None None None
40
- 73283 P99-1051 This paper examines the extent to which verb d... This paper examines the extent to which verb d... 1829043 6b1f6f28ee36de69e8afac39461ee1158cd4d49a ... None None None None None
41
- 73284 P00-1013 Spoken dialogue managers have benefited from u... Spoken dialogue managers have benefited from u... 10903652 483c818c09e39d9da47103fbf2da8aaa7acacf01 ... None None None None None
42
-
43
- [73285 rows x 21 columns]
44
- ```
45
-
46
- We are hoping that this corpus can be helpful for analysis relevant to the ACL community.
47
-
48
- **Please cite/star 🌟 this page if you use this corpus**
49
-
50
- ## Citing the ACL Anthology Corpus
51
 
52
  If you use this corpus in your research please use the following BibTeX entry:
53
 
@@ -63,6 +127,6 @@ If you use this corpus in your research please use the following BibTeX entry:
63
 
64
  We thank Semantic Scholar for providing access to the citation related data in this corpus.
65
 
66
- ## License
67
 
68
- ACL anthology corpus is released under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). By using this corpus, you are agreeing to its usage terms.
 
1
+ ---
2
+ annotations_creators: []
3
+ language:
4
+ - en
5
+ language_creators:
6
+ - found
7
+ license:
8
+ - mit
9
+ multilinguality:
10
+ - monolingual
11
+ paperswithcode_id: acronym-identification
12
+ pretty_name: acl-anthology-corpus
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets:
16
+ - original
17
+ tags:
18
+ - research papers
19
+ - acl
20
+ task_categories:
21
+ - token-classification
22
+ task_ids: []
23
+ train-eval-index:
24
+ - col_mapping:
25
+ labels: tags
26
+ tokens: tokens
27
+ config: default
28
+ splits:
29
+ eval_split: test
30
+ task: token-classification
31
+ task_id: entity_extraction
32
+ ---
33
+
34
+ # Dataset Card for ACL Anthology Corpus
35
+
36
+ ## Table of Contents
37
+
38
+ - [Table of Contents](#table-of-contents)
39
+ - [Dataset Description](#dataset-description)
40
+ - [Dataset Summary](#dataset-summary)
41
+ - [Languages](#languages)
42
+ - [Dataset Structure](#dataset-structure)
43
+ - [Data Instances](#data-instances)
44
+ - [Data Fields](#data-fields)
45
+ - [Dataset Creation](#dataset-creation)
46
+ - [Source Data](#source-data)
47
+ - [Additional Information](#additional-information)
48
+ - [Licensing Information](#licensing-information)
49
+ - [Citation Information](#citation-information)
50
+ - [Contributions](#contributions)
51
+
52
+ ## Dataset Description
53
+
54
+ - **Repository:** https://github.com/shauryr/ACL-anthology-corpus
55
+ - **Point of Contact:** shauryr@gmail.com
56
+
57
+ ### Dataset Summary
58
+
59
  Dataframe with extracted metadata (table below with details) and full text of the collection for analysis : **size 489M**
60
+
61
+ ### Languages
62
+
63
+ en, zh and others (TODO: find the languages in ACL)
64
+
65
+ ## Dataset Structure
66
+
67
+ Dataframe
68
+
69
+ ### Data Instances
70
+
71
+ Each row is a paper from ACL anthology
72
+
73
+ ### Data Fields
74
+
75
+ | **Column name** | **Description** |
76
  | :---------------: | :---------------------------: |
77
+ | `acl_id` | unique ACL id |
78
+ | `abstract` | abstract extracted by GROBID |
79
+ | `full_text` | full text extracted by GROBID |
80
+ | `corpus_paper_id` | Semantic Scholar ID |
81
+ | `pdf_hash` | sha1 hash of the pdf |
82
+ | `numcitedby` | number of citations from S2 |
83
+ | `url` | link of publication |
84
+ | `publisher` | - |
85
+ | `address` | Address of conference |
86
+ | `year` | - |
87
+ | `month` | - |
88
+ | `booktitle` | - |
89
+ | `author` | list of authors |
90
+ | `title` | title of paper |
91
+ | `pages` | - |
92
+ | `doi` | - |
93
+ | `number` | - |
94
+ | `volume` | - |
95
+ | `journal` | - |
96
+ | `editor` | - |
97
+ | `isbn` | - |
98
+
99
+ ## Dataset Creation
100
+
101
+ The corpus has all the paper in ACL anthology - as of September'22
102
+
103
+ ### Source Data
104
+
105
+ - [ACL Anthology](aclanthology.org)
106
+ - [Semantic Scholar](semanticscholar.org)
107
+
108
+ # Additional Information
109
+
110
+ ### Licensing Information
111
+
112
+ ACL anthology corpus is released under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). By using this corpus, you are agreeing to its usage terms.
113
+
114
+ ### Citation Information
 
 
 
 
 
 
 
 
 
115
 
116
  If you use this corpus in your research please use the following BibTeX entry:
117
 
 
127
 
128
  We thank Semantic Scholar for providing access to the citation related data in this corpus.
129
 
130
+ ### Contributions
131
 
132
+ Thanks to [@shauryr](https://github.com/shauryr) for adding this dataset.