Matteo Rinaldi ruggsea commited on
Commit
e998d8b
1 Parent(s): b2f161a

Add README tag + example (#5)

Browse files

- Add README tag + example (6ce002e6694e6b95f309d3e1b3924f4d2be58e2b)


Co-authored-by: Ruggero Marino Lazzaroni <ruggsea@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +34 -20
README.md CHANGED
@@ -1,29 +1,32 @@
1
  ---
2
  dataset_info:
3
  features:
4
- - name: title
5
- dtype: string
6
- - name: author
7
- dtype: string
8
- - name: id
9
- dtype: int32
10
- - name: timestamp
11
- dtype: string
12
- - name: progressive_number
13
- dtype: int32
14
- - name: original_url
15
- dtype: string
16
- - name: newsgroup
17
- dtype: string
18
- - name: text
19
- dtype: string
20
  splits:
21
- - name: trainv
22
- path: "parquet/*.parquet"
23
- num_bytes: 72373684017
24
- num_examples: 85010057
25
  download_size: 0
26
  dataset_size: 72373684017
 
 
 
27
  ---
28
  # Usenet Archive IT Dataset 🇮🇹
29
 
@@ -47,6 +50,8 @@ The dataset should contain only Italian language posts, but it is possible that
47
 
48
  ## Dataset Structure
49
 
 
 
50
  Each record in the dataset has the following fields:
51
 
52
  - `title`: The title of the post.
@@ -61,6 +66,15 @@ Each record in the dataset has the following fields:
61
  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.
62
  The original jsonl lines of the data are included as well as compressed bz2 files.
63
 
 
 
 
 
 
 
 
 
 
64
 
65
  ## Additional Information
66
 
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: title
5
+ dtype: string
6
+ - name: author
7
+ dtype: string
8
+ - name: id
9
+ dtype: int32
10
+ - name: timestamp
11
+ dtype: string
12
+ - name: progressive_number
13
+ dtype: int32
14
+ - name: original_url
15
+ dtype: string
16
+ - name: newsgroup
17
+ dtype: string
18
+ - name: text
19
+ dtype: string
20
  splits:
21
+ - name: trainv
22
+ path: parquet/*.parquet
23
+ num_bytes: 72373684017
24
+ num_examples: 85010057
25
  download_size: 0
26
  dataset_size: 72373684017
27
+ language:
28
+ - it
29
+ pretty_name: U
30
  ---
31
  # Usenet Archive IT Dataset 🇮🇹
32
 
 
50
 
51
  ## Dataset Structure
52
 
53
+ ### Features
54
+
55
  Each record in the dataset has the following fields:
56
 
57
  - `title`: The title of the post.
 
66
  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.
67
  The original jsonl lines of the data are included as well as compressed bz2 files.
68
 
69
+ ### Example
70
+
71
+ Below is a complete JSON record for reference:
72
+
73
+ ```json
74
+ {"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"}
75
+ ```
76
+
77
+
78
 
79
  ## Additional Information
80