mmcarpi commited on
Commit
c2a212a
1 Parent(s): e411848

Update version to v1.3

Browse files
Files changed (2) hide show
  1. README.md +8 -8
  2. corpus-carolina.py +21 -24
README.md CHANGED
@@ -46,7 +46,7 @@ language_bcp47:
46
  ## Dataset Description
47
 
48
  - **Homepage:** [sites.usp.br/corpuscarolina](https://sites.usp.br/corpuscarolina/)
49
- - **Current Version:** 1.2 (Ada)
50
  - **Point of Contact:** [LaViHD](mailto:lavihd@usp.br)
51
 
52
 
@@ -69,7 +69,7 @@ The documents are clustered into taxonomies and the corpus can be loaded in comp
69
 
70
  Dataset Vesioning:
71
 
72
- The Carolina Corpus is under continuous development resulting in multiple vesions. The current version is v1.2, but v1.1 is also available. You can access diferent vesions of the corpus using the `revision` parameter on `load_dataset`.
73
 
74
  Usage Example:
75
 
@@ -117,13 +117,13 @@ Every instance have the following structure.
117
 
118
  | Code | Taxonomy | Instances | Size |
119
  |:----:|:---------------------------|----------:|-------:|
120
- | | **Total** | 2107045 | 11 GB |
121
- | dat | Datasets and other Corpora | 1102049 | 4.4 GB |
122
- | wik | Wikis | 960139 | 5.2 GB |
123
- | jud | Judicial Branch | 40464 | 1.5 GB |
124
  | leg | Legislative Branch | 13 | 25 MB |
125
- | soc | Social Media | 3413 | 17 MB |
126
- | uni | University Domains | 941 | 10 MB |
127
  | pub | Public Domain Works | 26 | 4.5 MB |
128
  ||
129
 
 
46
  ## Dataset Description
47
 
48
  - **Homepage:** [sites.usp.br/corpuscarolina](https://sites.usp.br/corpuscarolina/)
49
+ - **Current Version:** 1.3 (Ada)
50
  - **Point of Contact:** [LaViHD](mailto:lavihd@usp.br)
51
 
52
 
 
69
 
70
  Dataset Vesioning:
71
 
72
+ The Carolina Corpus is under continuous development resulting in multiple vesions. The current version is v1.3, but v1.2 and v1.1 are also available. You can access diferent vesions of the corpus using the `revision` parameter on `load_dataset`.
73
 
74
  Usage Example:
75
 
 
117
 
118
  | Code | Taxonomy | Instances | Size |
119
  |:----:|:---------------------------|----------:|-------:|
120
+ | | **Total** | 2076205 | 11 GB |
121
+ | dat | Datasets and other Corpora | 1074032 | 4.3 GB |
122
+ | wik | Wikis | 957501 | 5.3 GB |
123
+ | jud | Judicial Branch | 40398 | 1.5 GB |
124
  | leg | Legislative Branch | 13 | 25 MB |
125
+ | soc | Social Media | 3294 | 17 MB |
126
+ | uni | University Domains | 941 | 11 MB |
127
  | pub | Public Domain Works | 26 | 4.5 MB |
128
  ||
129
 
corpus-carolina.py CHANGED
@@ -35,29 +35,26 @@ robust volume of texts of varied typology in contemporary Brazilian Portuguese
35
 
36
 
37
  _CITATION = r"""
38
- @misc{corpusCarolinaV1.2,
39
- title={
40
- Carolina:
41
- The Open Corpus for Linguistics and Artificial Intelligence},
42
- author={
43
- Finger, Marcelo and
44
- Paixão de Sousa, Maria Clara and
45
- Namiuti, Cristiane and
46
- Martins do Monte, Vanessa and
47
- Costa, Aline Silva and
48
- Serras, Felipe Ribas and
49
- Sturzeneker, Mariana Lourenço and
50
- Guets, Raquel de Paula and
51
- Mesquita, Renata Morais and
52
- Mello, Guilherme Lamartine de and
53
- Crespo, Maria Clara Ramos Morales and
54
- Rocha, Maria Lina de Souza Jeannine and
55
- Brasil, Patrícia and
56
- Silva, Mariana Marques da and
57
- Palma, Mayara Feliciano},
58
- howpublished={\url{https://sites.usp.br/corpuscarolina/corpus}},
59
- year={2022},
60
- note={Version 1.2 (Ada)},
61
  }
62
  """
63
 
@@ -91,7 +88,7 @@ def _taxonomies():
91
  )
92
 
93
 
94
- _VERSION = "1.2.0"
95
  _CORPUS_URL = "corpus/{tax}/"
96
  _CHECKSUM_FNAME = _CORPUS_URL + "checksum.sha256"
97
 
 
35
 
36
 
37
  _CITATION = r"""
38
+ @misc{crespo2023carolina,
39
+ title={Carolina: a General Corpus of Contemporary Brazilian Portuguese with Provenance, Typology and Versioning Information},
40
+ author={Maria Clara Ramos Morales Crespo and
41
+ Maria Lina de Souza Jeannine Rocha and
42
+ Mariana Lourenço Sturzeneker and
43
+ Felipe Ribas Serras and
44
+ Guilherme Lamartine de Mello and
45
+ Aline Silva Costa and
46
+ Mayara Feliciano Palma and
47
+ Renata Morais Mesquita and
48
+ Raquel de Paula Guets and
49
+ Mariana Marques da Silva and
50
+ Marcelo Finger and
51
+ Maria Clara Paixão de Sousa and
52
+ Cristiane Namiuti and
53
+ Vanessa Martins do Monte},
54
+ year={2023},
55
+ eprint={2303.16098},
56
+ archivePrefix={arXiv},
57
+ primaryClass={cs.CL}
 
 
 
58
  }
59
  """
60
 
 
88
  )
89
 
90
 
91
+ _VERSION = "1.3.0"
92
  _CORPUS_URL = "corpus/{tax}/"
93
  _CHECKSUM_FNAME = _CORPUS_URL + "checksum.sha256"
94