adial commited on
Commit
cf138d6
·
verified ·
1 Parent(s): 9012a5d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -22
README.md CHANGED
@@ -1,23 +1,37 @@
1
- ---
2
- annotations_creators:
3
- - crowdsourced
4
- language:
5
- - en
6
- language_creators:
7
- - crowdsourced
8
- - machine-generated
9
- license:
10
- - cc-by-nc-sa-4.0
11
- multilinguality:
12
- - monolingual
13
- pretty_name: RESPONSE
14
- size_categories:
15
- - 1K<n<10K
16
- source_datasets: []
17
- tags: [croissant]
18
- task_categories:
19
- - question-answering
20
- task_ids:
21
- - open-domain-qa
22
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
 
1
+ ### Dataset summary
2
+
3
+ This dataset contains 1789 data instances with problem identification, missing resource, time-dependent questions and answers pairs for disaster management. The prominent fields of interest are:
4
+
5
+ * problem: a description of the main problem a human may face in the incident depicted in the image
6
+ * context: A textual description of the incident situation. It is automatically generated by captioning an image from [Incidents 1M](https://arxiv.org/abs/2201.04236)
7
+ * missing resource: the main missing resource (service, amenity) in the described incident situation
8
+ * solutions: a set of three sentences, one for each timeframe (immediately, after one week, after few days) addressing how to replace or deal with the missing resource while dealing with the problem identified earlier.
9
+ * explanations: natural language rationale to justify the validity of the solution
10
+ * scenario : list of natural language questions automatically generated, one per each timeframe, incident and place labels.
11
+ Additionally, the fields with the metadata are:
12
+ * id: an identifier form the source data corresponding to the image id.
13
+ * ann_id : an identifier for the set of annotators, either 0 or 1. The tuple (ann_id, id) is a unique identifier for the dataset instance.
14
+ If you are having problems with downloading the dataset from the huggingface hub, please download it from [here]
15
+ (https://github.com/adiallo07/response).
16
+
17
+ ### Languages
18
+
19
+ English
20
+
21
+ ### Additional Information
22
+
23
+ You can download the data via:
24
+
25
+ ```
26
+ from datasets import load_dataset
27
+ response_dataset = load_dataset(adial/response)
28
+ ```
29
+ Please find more information about the code and how the data was collected on [here]
30
+ (https://github.com/adiallo07/response).
31
+
32
+ ### Licensing Information
33
+
34
+ Creative Commons Attribution Non Commercial Share Alike 4.0
35
+
36
+
37