dominguesm commited on
Commit
27f441e
·
1 Parent(s): f282f30

Update README

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: url
@@ -22,3 +34,39 @@ dataset_info:
22
  download_size: 1087713663056
23
  dataset_size: 1087519823221
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: pt
3
+ license: cc-by-4.0
4
+ multilinguality:
5
+ - monolingual
6
+ task_categories:
7
+ - text-generation
8
+ - fill-mask
9
+ task_ids:
10
+ - language-modeling
11
+ - masked-language-modeling
12
+ size_categories:
13
+ - 100M<n<1B
14
  dataset_info:
15
  features:
16
  - name: url
 
34
  download_size: 1087713663056
35
  dataset_size: 1087519823221
36
  ---
37
+
38
+ # Canarim: A Large-Scale Dataset of Web Pages in the Portuguese Language
39
+
40
+ ## Introduction
41
+
42
+ Canarim is a database encompassing over 342 million Portuguese language documents, sourced from multiple iterations of CommonCrawl. This nearly 1 terabyte database stands as one of the most extensive Portuguese language data collections available. It underwent initial deduplication using URLs, with plans for further text-based deduplication and filtering of potentially harmful content. The data, originally in HTML, has been converted to Markdown with the `Trafilatura` library to enhance readability and quality. Canarim is poised to be a crucial resource for NLP research, particularly in Portuguese language applications, filling the gap in large-scale, high-quality data for languages other than English.
43
+
44
+ ## Dataset Structure
45
+
46
+ ### Data Instances
47
+
48
+ An example looks as follows:
49
+
50
+ ```json
51
+ {
52
+ 'url': '...',
53
+ 'content_languages': 'por',
54
+ 'warc_filename': 'crawl-data/CC-MAIN-2023-06/segments/1674764500041.18/warc/CC-MAIN-20230202200542-20230202230542-00352.warc.gz',
55
+ 'warc_record_offset': 971279893,
56
+ 'warc_record_length': 3873,
57
+ 'text': '...',
58
+ 'crawl_timestamp': '2023-02-02T20:28:21Z'
59
+ }
60
+ ```
61
+
62
+ ### Data Fields
63
+
64
+ - `url`: URL of the page
65
+ - `content_languages`: Language of the page
66
+ - `warc_filename`: Name of the WARC file
67
+ - `warc_record_offset`: Offset of the WARC record
68
+ - `warc_record_length`: Length of the WARC record
69
+ - `text`: Text of the page, in Markdown format
70
+ - `crawl_timestamp`: Timestamp of the crawl
71
+
72
+ WIP