Datasets:

Modalities:
Tabular
Text
Formats:
csv
Languages:
Arabic
License:
File size: 2,117 Bytes
53e5efe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
dataset_info:
  features:
    - name: semantic
      dtype: float64
    - name: semantic_rank
      dtype: float64
    - name: semantic_diff
      dtype: float64
    - name: lexical1
      dtype: float64
    - name: lexical1_rank
      dtype: float64
    - name: lexical1_diff
      dtype: float64
    - name: lexical2
      dtype: float64
    - name: lexical2_rank
      dtype: float64
    - name: lexical2_diff
      dtype: float64
    - name: entity
      dtype: string
    - name: src_entity
      dtype: string
    - name: phonetic
      dtype: bool
    - name: pos
      dtype: string
    - name: label
      dtype: bool
  splits:
    - name: train
      num_examples: 19405
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train.csv
license: mit
task_categories:
  - text-classification
language:
  - ar
size_categories:
  - 10K<n<100K
---

# Masrad Dataset

## Dataset Description

The **Masrad** dataset contains 19,405 examples with features related to semantic similarity, lexical similarity, entity recognition, phonetic matching, and part-of-speech tagging for Arabic text.

## Features

| Feature | Type | Description |
|---------|------|-------------|
| `semantic` | float | Semantic similarity score |
| `semantic_rank` | float | Rank based on semantic similarity |
| `semantic_diff` | float | Difference from top semantic score |
| `lexical1` | float | First lexical similarity score |
| `lexical1_rank` | float | Rank based on first lexical score |
| `lexical1_diff` | float | Difference from top first lexical score |
| `lexical2` | float | Second lexical similarity score |
| `lexical2_rank` | float | Rank based on second lexical score |
| `lexical2_diff` | float | Difference from top second lexical score |
| `entity` | string | Detected entity type (PER, ORG, LOC, none) |
| `src_entity` | string | Source entity type |
| `phonetic` | bool | Whether phonetic match exists |
| `pos` | string | Part of speech tag |
| `label` | bool | Target label |

## Usage

```python
from datasets import load_dataset

dataset = load_dataset("U4RASD/Masrad")
```