giux78 commited on
Commit
c8b96f0
•
1 Parent(s): 52504be

Create README.md

Browse files

# Usenet Archive IT Dataset 🇮🇹

## Description

### Dataset Content

This dataset is a filtered version from the [Usenet dataset](https://huggingface.co./datasets/mrinaldi/UsenetArchiveIT) that contains 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. All posts with more the one message has been grouped in conversations

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 9,161,482 conversations of about 539 newsgroups, in about 18GB

### 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.
- `id`: The unique identifier of the post.
- `original_url`: The URL of the original post on Google Groups.
- `newsgroup`: The name of the newsgroup the post belongs to.
- `messages`: An array of messages in the form of [ { 'role': user, 'content' : '.....' }, { 'role' : 'assistant' , 'content' : '.......' ].

This repo contains the dataset in the Parquet format.

## Additional Information

### Dataset Curators

This dataset was curated by Hugging Face user [giux78](https://huggingface.co./giux78) but is only a filter and grouped version of [Usenet dataset](https://huggingface.co./datasets/mrinaldi/UsenetArchiveIT) released by
[manalog](https://huggingface.co./manalog) and [ruggsea](https://huggingface.co./ruggsea), as part of the [mii-community](https://huggingface.co./mii-community) dataset creation effort.


### 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.

## 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("mii-community/UsenetArchiveIT-conversations")
```

Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - it
7
+ tags:
8
+ - conversations
9
+ - human
10
+ size_categories:
11
+ - 1B<n<10B
12
+ ---