Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Languages:
Azerbaijani
Size:
10K - 100K
Tags:
nli
License:
Update README.md
Browse files
README.md
CHANGED
@@ -1,22 +1,85 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-4.0
|
3 |
-
configs:
|
4 |
-
- config_name: default
|
5 |
-
data_files:
|
6 |
-
- split: train
|
7 |
-
path: data/train-*
|
8 |
-
dataset_info:
|
9 |
-
features:
|
10 |
-
- name: sentence1
|
11 |
-
dtype: string
|
12 |
-
- name: sentence2
|
13 |
-
dtype: string
|
14 |
-
- name: lable
|
15 |
-
dtype: int64
|
16 |
-
splits:
|
17 |
-
- name: train
|
18 |
-
num_bytes: 9761971
|
19 |
-
num_examples: 74862
|
20 |
-
download_size: 2998202
|
21 |
-
dataset_size: 9761971
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
configs:
|
4 |
+
- config_name: default
|
5 |
+
data_files:
|
6 |
+
- split: train
|
7 |
+
path: data/train-*
|
8 |
+
dataset_info:
|
9 |
+
features:
|
10 |
+
- name: sentence1
|
11 |
+
dtype: string
|
12 |
+
- name: sentence2
|
13 |
+
dtype: string
|
14 |
+
- name: lable
|
15 |
+
dtype: int64
|
16 |
+
splits:
|
17 |
+
- name: train
|
18 |
+
num_bytes: 9761971
|
19 |
+
num_examples: 74862
|
20 |
+
download_size: 2998202
|
21 |
+
dataset_size: 9761971
|
22 |
+
task_categories:
|
23 |
+
- token-classification
|
24 |
+
language:
|
25 |
+
- az
|
26 |
+
tags:
|
27 |
+
- nli
|
28 |
+
pretty_name: AzNLI Benchmark
|
29 |
+
size_categories:
|
30 |
+
- 10K<n<100K
|
31 |
+
---
|
32 |
+
|
33 |
+
# AzNLI-Benchmark: Azerbaijani Natural Language Inference
|
34 |
+
|
35 |
+
This repository contains the AzNLI benchmark dataset for Natural Language Inference (NLI) in the Azerbaijani language. NLI is a fundamental task in natural language understanding where the goal is to determine the logical relationship between two sentences.
|
36 |
+
|
37 |
+
## Dataset Overview
|
38 |
+
|
39 |
+
The AzNLI benchmark consists of sentence pairs in Azerbaijani, where each pair is labeled according to the logical relationship between the first sentence (premise) and the second sentence (hypothesis).
|
40 |
+
|
41 |
+
## Format
|
42 |
+
|
43 |
+
The dataset is provided in CSV format with the following columns:
|
44 |
+
- `sentence1`: The premise sentence in Azerbaijani
|
45 |
+
- `sentence2`: The hypothesis sentence in Azerbaijani
|
46 |
+
- `label`: The relationship label (0, 1, or 2)
|
47 |
+
|
48 |
+
## Label Definitions
|
49 |
+
|
50 |
+
The labels indicate the following relationships:
|
51 |
+
|
52 |
+
- **0**: Entailment - The hypothesis is definitely true given the premise
|
53 |
+
- **1**: Neutral - The hypothesis may or may not be true given the premise
|
54 |
+
- **2**: Contradiction - The hypothesis is definitely false given the premise
|
55 |
+
|
56 |
+
## Example
|
57 |
+
|
58 |
+
```csv
|
59 |
+
sentence1,sentence2,label
|
60 |
+
Məktəb digər mədəniyyətlərlə məclislərdə necə davranıldığını nümayiş etdirmək üçün Amerika mədəniyyətini göstərən xüsusi bir tədbir keçirir.,Bir məktəb basketbol oyunu təşkil edir.,2
|
61 |
+
Məktəb digər mədəniyyətlərlə məclislərdə necə davranıldığını nümayiş etdirmək üçün Amerika mədəniyyətini göstərən xüsusi bir tədbir keçirir.,Bir orta məktəb bir tədbir keçirir.,1
|
62 |
+
Məktəb digər mədəniyyətlərlə məclislərdə necə davranıldığını nümayiş etdirmək üçün Amerika mədəniyyətini göstərən xüsusi bir tədbir keçirir.,Bir məktəb bir tədbir keçirir.,0
|
63 |
+
```
|
64 |
+
|
65 |
+
In the example above:
|
66 |
+
- The first pair shows contradiction: a cultural event about American culture contradicts a basketball game
|
67 |
+
- The second pair shows neutral relationship: a middle school event is neither confirmed nor denied by the premise
|
68 |
+
- The third pair shows entailment: a school holding an event is directly implied by the premise
|
69 |
+
|
70 |
+
## Usage
|
71 |
+
|
72 |
+
This dataset can be used for:
|
73 |
+
- Training and evaluating NLI models for Azerbaijani
|
74 |
+
- Cross-lingual transfer learning experiments
|
75 |
+
- Studying natural language understanding in low-resource languages
|
76 |
+
- Benchmarking multilingual models on Azerbaijani NLI
|
77 |
+
|
78 |
+
## License
|
79 |
+
|
80 |
+
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
|
81 |
+
|
82 |
+
|
83 |
+
## Contact
|
84 |
+
|
85 |
+
For more information, questions, or issues, please contact LocalDoc at [[email protected]].
|