ruggsea commited on
Commit
6ce002e
1 Parent(s): a0ada14

Add README tag + example

Browse files
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
 
@@ -46,6 +49,8 @@ The dataset should contain only Italian language posts, but it is possible that
46
 
47
  ## Dataset Structure
48
 
 
 
49
  Each record in the dataset has the following fields:
50
 
51
  - `title`: The title of the post.
@@ -60,6 +65,15 @@ Each record in the dataset has the following fields:
60
  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.
61
  The original jsonl lines of the data are included as well as compressed bz2 files.
62
 
 
 
 
 
 
 
 
 
 
63
 
64
  ## Additional Information
65
 
 
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
 
 
49
 
50
  ## Dataset Structure
51
 
52
+ ### Features
53
+
54
  Each record in the dataset has the following fields:
55
 
56
  - `title`: The title of the post.
 
65
  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.
66
  The original jsonl lines of the data are included as well as compressed bz2 files.
67
 
68
+ ### Example
69
+
70
+ Below is a complete JSON record for reference:
71
+
72
+ ```json
73
+ {"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\[email protected]"}
74
+ ```
75
+
76
+
77
 
78
  ## Additional Information
79