hpprc commited on
Commit
6c10c7f
1 Parent(s): 67b824d

update interface

Browse files
Files changed (2) hide show
  1. README.md +139 -0
  2. janli.py +1 -10
README.md CHANGED
@@ -1,3 +1,142 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
2
  license: cc-by-sa-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - ja
4
+ language_creators:
5
+ - other
6
+ multilinguality:
7
+ - monolingual
8
+ pretty_name: JaNLI
9
+ task_categories:
10
+ - text-classification
11
+ task_ids:
12
+ - natural-language-inference
13
  license: cc-by-sa-4.0
14
  ---
15
+
16
+ # Dataset Card for JaNLI
17
+
18
+ ## Table of Contents
19
+ - [Dataset Card for JaNLI](#dataset-card-for-janli)
20
+ - [Table of Contents](#table-of-contents)
21
+ - [Dataset Description](#dataset-description)
22
+ - [Dataset Summary](#dataset-summary)
23
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
24
+ - [Languages](#languages)
25
+ - [Dataset Structure](#dataset-structure)
26
+ - [Data Instances](#data-instances)
27
+ - [Data Fields](#data-fields)
28
+ - [Data Splits](#data-splits)
29
+ - [Dataset Creation](#dataset-creation)
30
+ - [Curation Rationale](#curation-rationale)
31
+ - [Source Data](#source-data)
32
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
33
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
34
+ - [Annotations](#annotations)
35
+ - [Annotation process](#annotation-process)
36
+ - [Who are the annotators?](#who-are-the-annotators)
37
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
38
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
39
+ - [Social Impact of Dataset](#social-impact-of-dataset)
40
+ - [Discussion of Biases](#discussion-of-biases)
41
+ - [Other Known Limitations](#other-known-limitations)
42
+ - [Additional Information](#additional-information)
43
+ - [Dataset Curators](#dataset-curators)
44
+ - [Licensing Information](#licensing-information)
45
+ - [Citation Information](#citation-information)
46
+ - [Contributions](#contributions)
47
+
48
+ ## Dataset Description
49
+
50
+ - **Homepage:**
51
+ - **Repository:**
52
+ - **Paper:**
53
+ - **Leaderboard:**
54
+ - **Point of Contact:**
55
+
56
+ ### Dataset Summary
57
+
58
+ [More Information Needed]
59
+
60
+ ### Supported Tasks and Leaderboards
61
+
62
+ [More Information Needed]
63
+
64
+ ### Languages
65
+
66
+ [More Information Needed]
67
+
68
+ ## Dataset Structure
69
+
70
+ ### Data Instances
71
+
72
+ [More Information Needed]
73
+
74
+ ### Data Fields
75
+
76
+ [More Information Needed]
77
+
78
+ ### Data Splits
79
+
80
+ [More Information Needed]
81
+
82
+ ## Dataset Creation
83
+
84
+ ### Curation Rationale
85
+
86
+ [More Information Needed]
87
+
88
+ ### Source Data
89
+
90
+ #### Initial Data Collection and Normalization
91
+
92
+ [More Information Needed]
93
+
94
+ #### Who are the source language producers?
95
+
96
+ [More Information Needed]
97
+
98
+ ### Annotations
99
+
100
+ #### Annotation process
101
+
102
+ [More Information Needed]
103
+
104
+ #### Who are the annotators?
105
+
106
+ [More Information Needed]
107
+
108
+ ### Personal and Sensitive Information
109
+
110
+ [More Information Needed]
111
+
112
+ ## Considerations for Using the Data
113
+
114
+ ### Social Impact of Dataset
115
+
116
+ [More Information Needed]
117
+
118
+ ### Discussion of Biases
119
+
120
+ [More Information Needed]
121
+
122
+ ### Other Known Limitations
123
+
124
+ [More Information Needed]
125
+
126
+ ## Additional Information
127
+
128
+ ### Dataset Curators
129
+
130
+ [More Information Needed]
131
+
132
+ ### Licensing Information
133
+
134
+ [More Information Needed]
135
+
136
+ ### Citation Information
137
+
138
+ [More Information Needed]
139
+
140
+ ### Contributions
141
+
142
+ Thanks to [@github-username](https://github.com/<github-username>) for adding this dataset.
janli.py CHANGED
@@ -1,6 +1,5 @@
1
- import pandas as pd
2
-
3
  import datasets as ds
 
4
 
5
  _CITATION = """\
6
  @InProceedings{yanaka-EtAl:2021:blackbox,
@@ -25,14 +24,6 @@ _DOWNLOAD_URL = "https://raw.githubusercontent.com/verypluming/JaNLI/main/janli.
25
  class JaNLIDataset(ds.GeneratorBasedBuilder):
26
  VERSION = ds.Version("1.0.0")
27
 
28
- BUILDER_CONFIGS = [
29
- ds.BuilderConfig(
30
- name="default",
31
- version=VERSION,
32
- description=_DESCRIPTION,
33
- ),
34
- ]
35
-
36
  def _info(self) -> ds.DatasetInfo:
37
  features = ds.Features(
38
  {
 
 
 
1
  import datasets as ds
2
+ import pandas as pd
3
 
4
  _CITATION = """\
5
  @InProceedings{yanaka-EtAl:2021:blackbox,
 
24
  class JaNLIDataset(ds.GeneratorBasedBuilder):
25
  VERSION = ds.Version("1.0.0")
26
 
 
 
 
 
 
 
 
 
27
  def _info(self) -> ds.DatasetInfo:
28
  features = ds.Features(
29
  {