Datasets:
File size: 4,654 Bytes
3d678fa e998d8b 3d678fa f489fc5 e998d8b f489fc5 e998d8b f489fc5 3d678fa a0ada14 b2f161a a0ada14 e998d8b a0ada14 e998d8b a0ada14 2e30422 a0ada14 3c1e8fe a0ada14 |
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
---
dataset_info:
features:
- name: title
dtype: string
- name: author
dtype: string
- name: id
dtype: int32
- name: timestamp
dtype: string
- name: progressive_number
dtype: int32
- name: original_url
dtype: string
- name: newsgroup
dtype: string
- name: text
dtype: string
splits:
- name: train
num_bytes: 72373684017
num_examples: 85010057
configs:
- config_name: default
data_files:
- split: train
path: parquet/*.parquet
language:
- it
pretty_name: Italian Usenet Archive
task_categories:
- text-generation
- text-classification
size_categories:
- 10M<n<100M
---
# Usenet Archive IT Dataset 🇮🇹
## Description
### Dataset Content
This dataset contains Usenet posts from Italian language newsgroups belonging to the `it` and `italia` hierarchies. The data has been archived and converted to the Parquet format for easy processing.
The only preprocessing conducted on the text was the removal of two conversations in which the VBS source code of the malicious script "ILOVEYOU" was present as it was shared by two users for didactical purposes on May, 5, 2000; these conversations were causing HF to flag the dataset as malicious.
This dataset contributes to the [mii-community](https://huggingface.co/mii-community) project, aimed at advancing the creation of Italian open-source Language Models (LLMs).🇮🇹 🤖
### Descriptive Statistics
This dataset contains 85010057 posts from 11956999 threads in 539 newsgroups. Threads appear to have around 7 posts on average, with a median of 3 posts.
The posts were created between 1995 and 2024. The text of all the posts together sum up to a total of 55885335313 characters, or approximately 10-20B tokens. The average length of the posts is 657 characters, and the median length is 380 characters.
### Languages
The dataset should contain only Italian language posts, but it is possible that some posts are in other languages. The dataset has not been language filtered, as post were expected to be in Italian.
## Dataset Structure
### Features
Each record in the dataset has the following fields:
- `title`: The title of the post.
- `author`: The username of the author of the post.
- `id`: The unique identifier of the post.
- `timestamp`: The timestamp of the post.
- `progressive_number`: An integer identifying the thread number in the newsgroup.
- `original_url`: The URL of the original post on Google Groups.
- `newsgroup`: The name of the newsgroup the post belongs to.
- `text`: The text content of the post.
This repo contains the dataset in the Parquet format. The dataset is split into multiple Parquet files inside the `parquet` folder, each containing a portion of the records. The files are named `usenet_converted_*.parquet`, where `*` is a number indicating the order of the file.
The original jsonl lines of the data are included as well as compressed bz2 files.
### Example
Below is a complete JSON record for reference:
```json
{"title": "Cerco Vespa", "author": "Castel", "id": 4423, "progressive_number": 1, "timestamp": "1998-06-26T09:00:00", "newsgroup": "it.annunci.usato", "original_url": "https://groups.google.com/g/it.annunci.usato/c/kKlb8hcSiX0/m/eXMsxa8SJ5gJ", "text": "Cerco vespa 125 o 50 in buono stato ma di vecchio modello, zone RE, PR, MO.\nGrazie in anticipo\nCastel\nlorenzo.c...@comune.re.it"}
```
## Additional Information
### Dataset Curators
This dataset was compiled and curated by Hugging Face users [mrinaldi](https://huggingface.co/mrinaldi) and [ruggsea](https://huggingface.co/ruggsea), as part of the [mii-community](https://huggingface.co/mii-community) dataset creation effort.
The software used to download the post was written by [mrinaldi](https://huggingface.com/mrinaldi) and its source coude is reachable on [github](https://github.com/manalog97/GGetter).
### Dataset rationale
The dataset was created as part of a bigger effort to create various high-quality datasets of native Italian text, with the aim of aiding the development of Italian open-source LLMs.
The dataset is expected to be used for training and fine-tuning language models, as well as for other NLP tasks such as text classification, summarization, and translation. The column `text` contains the raw text of the posts, and the column `newsgroup` contains the name of the newsgroup the post belongs to, which can be used for classification tasks.
## Usage
You can load the dataset directly from datasets using the `load_dataset` function. Here's an example:
```python
from datasets import load_dataset
dataset = load_dataset("mrinaldi/UsenetArchiveIT")
``` |