Datasets:
Tasks:
Zero-Shot Classification
Modalities:
Text
Formats:
parquet
Languages:
Uzbek
Size:
10K - 100K
Tags:
uzbek_zero_shot
License:
Update README.md
Browse files
README.md
CHANGED
@@ -27,65 +27,65 @@ pretty_name: Uzbek zero shot classification dataset
|
|
27 |
size_categories:
|
28 |
- 10K<n<100K
|
29 |
---
|
30 |
-
|
31 |
|
32 |
-
###
|
33 |
-
|
34 |
|
35 |
-
###
|
36 |
-
|
37 |
|
38 |
```json
|
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 |
```python
|
64 |
-
#
|
65 |
|
66 |
print(dataset[0])
|
67 |
```
|
68 |
|
69 |
```json
|
70 |
{
|
71 |
-
"text": "
|
72 |
-
"class": "
|
73 |
}
|
74 |
```
|
75 |
|
76 |
-
###
|
77 |
-
|
78 |
|
79 |
```python
|
80 |
from datasets import load_dataset
|
81 |
|
82 |
-
dataset = load_dataset("
|
83 |
```
|
84 |
|
85 |
-
###
|
86 |
-
|
87 |
|
88 |
-
##
|
89 |
|
90 |
-
|
91 |
-
LinkedIn: [Riskaliev Murad](https://www.linkedin.com/in/risqaliyevds/)
|
|
|
27 |
size_categories:
|
28 |
- 10K<n<100K
|
29 |
---
|
30 |
+
# Uzbek Zero-Shot Classification Dataset
|
31 |
|
32 |
+
### About the Dataset
|
33 |
+
This dataset is created for categorizing texts in Uzbek into various categories. The dataset is prepared based on news websites and includes the following categories: Politics, Economy, Technology, Sports, Culture, Health, Family and Society, Education, Ecology, Foreign News.
|
34 |
|
35 |
+
### Data Structure
|
36 |
+
The data is provided in JSON format with the following structure:
|
37 |
|
38 |
```json
|
39 |
{
|
40 |
+
"classes":
|
41 |
+
Politics - If the text is about politics.
|
42 |
+
Economy - If the text is about the economy.
|
43 |
+
Technology - If the text is about technology.
|
44 |
+
Sports - If the text is about sports.
|
45 |
+
Culture - If the text is about culture.
|
46 |
+
Health - If the text is about health.
|
47 |
+
Family and Society - If the text is about family and society.
|
48 |
+
Education - If the text is about education.
|
49 |
+
Ecology - If the text is about ecology.
|
50 |
+
Foreign News - If the text is about foreign news.
|
51 |
}
|
52 |
```
|
53 |
|
54 |
+
### Preparation Guidelines
|
55 |
+
The following guidelines were followed in preparing this dataset:
|
56 |
+
- All possible categories were extracted from the text.
|
57 |
+
- Categories are provided in their original form without additional annotations or translations.
|
58 |
+
- Each text must belong to only one category.
|
59 |
|
60 |
+
### Examples
|
61 |
+
Here are some examples:
|
62 |
|
63 |
```python
|
64 |
+
# After downloading the dataset
|
65 |
|
66 |
print(dataset[0])
|
67 |
```
|
68 |
|
69 |
```json
|
70 |
{
|
71 |
+
"text": "A fatal road accident occurred in the Yakkasaroy district of Tashkent. Photo: IIBB YHXB According to the IIBB YHXB report, on November 7 at around 19:30, a Nexia-2 driven by B.A. born in 1999 and a Lasetti driven by J.O. born in 2004 collided on Muqimiy Street. As a result of the accident, Sh.E. born in 1998, a passenger in the Nexia-2, died at the scene from injuries sustained. In addition, the drivers of both cars and passengers in the Nexia-2: T.O. born in 1995, B.Q. born in 1996, and M.Q. born in 2001 were hospitalized with various injuries. A criminal case has been initiated under part 2 of article 266 of the Criminal Code by the Tashkent city IIBB Investigation Department. The investigation is ongoing.",
|
72 |
+
"class": "Family and Society"
|
73 |
}
|
74 |
```
|
75 |
|
76 |
+
### Download
|
77 |
+
You can download this dataset using the following code:
|
78 |
|
79 |
```python
|
80 |
from datasets import load_dataset
|
81 |
|
82 |
+
dataset = load_dataset("risqaliyevds/uzbek-zero-shot-classification")
|
83 |
```
|
84 |
|
85 |
+
### License
|
86 |
+
This dataset is provided as open source and is available for free use by all users.
|
87 |
|
88 |
+
## Contact
|
89 |
|
90 |
+
If you have any questions or need more information, please contact us.
|
91 |
+
LinkedIn: [Riskaliev Murad](https://www.linkedin.com/in/risqaliyevds/)
|