Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
---
|
2 |
license: cc-by-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-sa-4.0
|
3 |
+
task_categories:
|
4 |
+
- question-answering
|
5 |
+
language:
|
6 |
+
- uk
|
7 |
+
size_categories:
|
8 |
+
- 1K<n<10K
|
9 |
---
|
10 |
+
|
11 |
+
|
12 |
+
# Ukrainian StackExchange Dataset
|
13 |
+
|
14 |
+
This repository contains a dataset collected from the Ukrainian StackExchange website, available at zeusfsx/ukrainian-stackexchange. The dataset is in JSON format and includes text data parsed from the website https://ukrainian.stackexchange.com/.
|
15 |
+
|
16 |
+
## Dataset Description
|
17 |
+
|
18 |
+
The Ukrainian StackExchange Dataset is a rich source of text data for tasks related to natural language processing, machine learning, and data mining in the Ukrainian language. The dataset contains information such as questions, answers, comments, and associated metadata from the website.
|
19 |
+
|
20 |
+
The data has been collected from the following sections of the Ukrainian StackExchange website:
|
21 |
+
|
22 |
+
Questions
|
23 |
+
Answers
|
24 |
+
Tags
|
25 |
+
Votes
|
26 |
+
|
27 |
+
## Structure
|
28 |
+
|
29 |
+
The dataset is structured as follows:
|
30 |
+
|
31 |
+
- `question`: Contains information about the question
|
32 |
+
- `id`: Unique identifier for the question
|
33 |
+
- `title`: Title of the question
|
34 |
+
- `text`: Text content of the question
|
35 |
+
- `upvoteCount`: The net upvote count of the question
|
36 |
+
- `tags`: List of tags associated with the question
|
37 |
+
- `answers`: A list of answers for the question, each containing:
|
38 |
+
- `id`: Unique identifier for the answer
|
39 |
+
- `text`: Text content of the answer
|
40 |
+
- `upvoteCount`: The net upvote count of the answer
|
41 |
+
- `isAccepted`: A boolean value indicating whether the answer is accepted or not
|
42 |
+
- `url`: The URL of the question on the Ukrainian StackExchange website
|
43 |
+
|
44 |
+
## Usage
|
45 |
+
|
46 |
+
To use this dataset in your project, you can load it from the Hugging Face Hub:
|
47 |
+
|
48 |
+
```python
|
49 |
+
from datasets import load_dataset
|
50 |
+
|
51 |
+
dataset = load_dataset("zeusfsx/ukrainian-stackexchange")
|
52 |
+
```
|
53 |
+
|
54 |
+
## License
|
55 |
+
|
56 |
+
This dataset is provided under the Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) License.
|