File size: 1,886 Bytes
8bcfbf2 fa01b3b 8bcfbf2 fa01b3b |
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 |
---
license: cc-by-sa-4.0
task_categories:
- question-answering
language:
- uk
size_categories:
- 1K<n<10K
---
# Ukrainian StackExchange Dataset
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/.
## Dataset Description
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.
The data has been collected from the following sections of the Ukrainian StackExchange website:
Questions
Answers
Tags
Votes
## Structure
The dataset is structured as follows:
- `question`: Contains information about the question
- `id`: Unique identifier for the question
- `title`: Title of the question
- `text`: Text content of the question
- `upvoteCount`: The net upvote count of the question
- `tags`: List of tags associated with the question
- `answers`: A list of answers for the question, each containing:
- `id`: Unique identifier for the answer
- `text`: Text content of the answer
- `upvoteCount`: The net upvote count of the answer
- `isAccepted`: A boolean value indicating whether the answer is accepted or not
- `url`: The URL of the question on the Ukrainian StackExchange website
## Usage
To use this dataset in your project, you can load it from the Hugging Face Hub:
```python
from datasets import load_dataset
dataset = load_dataset("zeusfsx/ukrainian-stackexchange")
```
## License
This dataset is provided under the Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) License. |