joanllop commited on
Commit
cde6184
·
1 Parent(s): 3cf810f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -0
README.md ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ca
4
+ multilinguality:
5
+ - monolingual
6
+ pretty_name: synthetic_meteocat
7
+ size_categories:
8
+ - 10K<n<100K
9
+ task_categories:
10
+ - text-generation
11
+ - token-classification
12
+ task_ids:
13
+ - named-entity-recognition
14
+ ---
15
+
16
+ # Dataset Card for Meteocat
17
+
18
+ ## Table of Contents
19
+ - [Table of Contents](#table-of-contents)
20
+ - [Dataset Description](#dataset-description)
21
+ - [Dataset Summary](#dataset-summary)
22
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
23
+ - [Languages](#languages)
24
+ - [Dataset Structure](#dataset-structure)
25
+ - [Data Instances](#data-instances)
26
+ - [Data Fields](#data-fields)
27
+ - [Data Splits](#data-splits)
28
+ - [Additional Information](#additional-information)
29
+ - [Dataset Curators](#dataset-curators)
30
+ - [Licensing Information](#licensing-information)
31
+ - [Citation Information](#citation-information)
32
+ - [Contributions](#contributions)
33
+
34
+ ## Dataset Description
35
+
36
+ - **Point of Contact:** [[email protected]]([email protected])
37
+
38
+ ### Dataset Summary
39
+
40
+ This is a synthetic dataset that contains examples, each of them, with the following fields:
41
+ - Instructions like "El dissabte a la nit, quin temps farà a Mont-real?"
42
+ - Context like "Day: dissabte | Location: Mont-real | mati: el cel estarà molt ennuvolat | tarda: plourà escadusserament | nit: el cel tendirà a estar cobert de núvols | temp: Lleugera pujada de les temperatures"
43
+ - Response like "A la nit el cel estarà ennuvolat"
44
+
45
+ ### Supported Tasks and Leaderboards
46
+
47
+ This dataset is mainly intended to train models for text-generation and named-entity-recognition.
48
+
49
+ ### Languages
50
+
51
+ The dataset is in Catalan (`ca-CA`).
52
+
53
+ ## Dataset Structure
54
+
55
+ The dataset consists of examples in a jsonl format with 3 fields each: instruction, context and response.
56
+
57
+ ### Data Instances
58
+
59
+ {
60
+ "instruction": "Quin temps farà a la nit a Camarasa dijous?",
61
+ "context": "Day: dijous | Location: Camarasa | mati: el cel anirà encapotant-se cada cop més | tarda: el sol anirà guanyant terreny als núvols | nit: cel clar | temp: Temperatures sense canvis",
62
+ "response": "A la nit, cel ben clar"
63
+ }
64
+
65
+ ### Data Fields
66
+ - instruction: Weather-related question.
67
+ - context: Information in the format "Day: [DAY] | Location: [LOCATION] | mati: [WEATHER FORECAST] | tarda: [WEATHER FORECAST] | nit: [WEATHER FORECAST]".
68
+ - response: Whether forecast answering the question.
69
+
70
+ ### Data Splits
71
+
72
+ * dev.json: 5563 examples
73
+ * test.json: 5688 examples
74
+ * train.json: 45606 examples
75
+
76
+
77
+ ## Additional Information
78
+
79
+ ### Dataset Curators
80
+
81
+ Text Mining Unit (TeMU) at the Barcelona Supercomputing Center ([email protected])
82
+
83
+
84
+ This work was funded by the [Departament de la Vicepresidència i de Polítiques Digitals i Territori de la Generalitat de Catalunya](https://politiquesdigitals.gencat.cat/ca/inici/index.html#googtrans(ca|en) within the framework of [Projecte AINA](https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina).
85
+
86
+ ### Licensing Information
87
+
88
+ ???? [Creative Commons Attribution Non-commercial No-Derivatives 4.0 International](https://creativecommons.org/licenses/by-nc-nd/4.0/).
89
+
90
+ ### Contributions
91
+
92
+ [N/A]