PiC commited on
Commit
27ad045
·
1 Parent(s): 28ebac7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -9
README.md CHANGED
@@ -21,7 +21,7 @@ task_categories:
21
  task_ids: []
22
  ---
23
 
24
- # Dataset Card for [PiC: Phrase Sense Disambiguation]
25
 
26
  ## Table of Contents
27
  - [Table of Contents](#table-of-contents)
@@ -50,15 +50,24 @@ task_ids: []
50
 
51
  ## Dataset Description
52
 
53
- - **Homepage:**
54
- - **Repository:**
55
  - **Paper:**
56
  - **Leaderboard:**
57
- - **Point of Contact:**
 
 
 
58
 
59
  ### Dataset Summary
60
 
61
- [More Information Needed]
 
 
 
 
 
 
62
 
63
  ### Supported Tasks and Leaderboards
64
 
@@ -66,21 +75,49 @@ task_ids: []
66
 
67
  ### Languages
68
 
69
- [More Information Needed]
70
 
71
  ## Dataset Structure
72
 
73
  ### Data Instances
74
 
75
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  ### Data Fields
78
 
79
- [More Information Needed]
 
 
 
 
 
 
 
 
80
 
81
  ### Data Splits
82
 
83
- [More Information Needed]
 
 
84
 
85
  ## Dataset Creation
86
 
 
21
  task_ids: []
22
  ---
23
 
24
+ # Dataset Card for "PiC: Phrase Sense Disambiguation"
25
 
26
  ## Table of Contents
27
  - [Table of Contents](#table-of-contents)
 
50
 
51
  ## Dataset Description
52
 
53
+ - **Homepage:** [https://phrase-in-context.github.io/](https://phrase-in-context.github.io/)
54
+ - **Repository:** [https://github.com/phrase-in-context](https://github.com/phrase-in-context)
55
  - **Paper:**
56
  - **Leaderboard:**
57
+ - **Point of Contact:** [Thang Pham](<[email protected]>)
58
+ - **Size of downloaded dataset files:** 49.95 MB
59
+ - **Size of the generated dataset:** 43.26 MB
60
+ - **Total amount of disk used:** 93.20 MB
61
 
62
  ### Dataset Summary
63
 
64
+ PSD is a phrase retrieval task like PR-pass and PR-page but more challenging since each example contains two short paragraphs (~11 sentences each) which trigger different senses of the same phrase.
65
+ The goal is to find the instance of the target phrase **t** that is semantically similar to a paraphrase **q**
66
+ We propose to use the train & dev sets of PR and 5,150 PSD examples for testing.
67
+
68
+ <p align="center">
69
+ ![PSD_sample](https://auburn.edu/~tmp0038/PiC/psd_sample.png "PSD sample")
70
+ </p>
71
 
72
  ### Supported Tasks and Leaderboards
73
 
 
75
 
76
  ### Languages
77
 
78
+ English.
79
 
80
  ## Dataset Structure
81
 
82
  ### Data Instances
83
 
84
+ **PSD**
85
+ * Size of downloaded dataset files: 49.95 MB
86
+ * Size of the generated dataset: 43.26 MB
87
+ * Total amount of disk used: 93.20 MB
88
+
89
+ An example of 'test' looks as follows.
90
+
91
+ ```
92
+ {
93
+ "id": "297-1",
94
+ "title": "https://en.wikipedia.org/wiki?curid=2226019,https://en.wikipedia.org/wiki?curid=1191780",
95
+ "context": "In addition, the results from the study did not support the idea of females preferring complexity over simplicity in song sequences. These findings differ from past examinations, like the 2008 Morisake et al. study that suggested evidence of female Bengalese finches preferring complex songs over simple ones. Evolutionary adaptations of specifically complex song production in relation to female preference in Bengalese finches continues to be a topic worth examining. Comparison with zebra finches. Bengalese finches and zebra finches are members of the estrildiae family and are age-limited learners when it comes to song learning and the acoustic characteristics of their songs (Peng et al., 2012). Both of these species have been widely used in song learning based animal behavior research and although they share many characteristics researchers have been able to determine stark differences between the two. Previous to research done in 1987, it was thought that song learning in Bengalese finches was similar to zebra finches but there was no research to support this idea. Both species require learning from an adult during a sensitive juvenile phase in order to learn the species specific and sexually dimorphic songs. This tutor can be the father of the young or other adult males that are present around the juvenile. Clayton aimed to directly compare the song learning ability of both of these species to determine if they have separate learning behaviors. Many students find they can not possibly complete all the work assigned them; they learn to neglect some of it. Some student groups maintain files of past examinations which only worsen this situation. The difference between the formal and real requirements produced considerable dissonance among the students and resulted in cynicism, scorn, and hypocrisy among students, and particular difficulty for minority students. No part of the university community, writes Snyder, neither the professors, the administration nor the students, desires the end result created by this process. The \"Saturday Review\" said the book \"will gain recognition as one of the more cogent 'college unrest' books\" and that it presents a \"most provocative thesis.\" The book has been cited many times in studies. References. [[Category:Curricula]] [[Category:Philosophy of education]] [[Category:Massachusetts Institute of Technology]] [[Category:Books about social psychology]] [[Category:Student culture]] [[Category:Books about education]] [[Category:1970 non-fiction books]]",
96
+ "query": "previous exams",
97
+ "answers": {
98
+ "text": ["past examinations"],
99
+ "answer_start": [1621]
100
+ }
101
+ }
102
+ ```
103
 
104
  ### Data Fields
105
 
106
+ The data fields are the same among all subsets and splits.
107
+
108
+ * id: a string feature.
109
+ * title: a string feature.
110
+ * context: a string feature.
111
+ * question: a string feature.
112
+ * answers: a dictionary feature containing:
113
+ * text: a list of string features.
114
+ * answer_start: a list of int32 features.
115
 
116
  ### Data Splits
117
 
118
+ | name |train|validation|test|
119
+ |--------------------|----:|---------:|---:|
120
+ |PSD |20002| 3000|5000|
121
 
122
  ## Dataset Creation
123