File size: 3,148 Bytes
659890d
77ccce3
 
 
 
 
cc55ddf
 
 
 
85b864f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cc55ddf
85b864f
 
cc55ddf
85b864f
 
 
 
 
 
 
 
 
 
 
 
cc55ddf
 
 
659890d
77ccce3
 
eef7c40
77ccce3
 
cc55ddf
 
 
 
 
 
c948119
 
 
 
 
8a954e9
 
 
cc55ddf
 
77ccce3
 
 
 
 
 
c948119
 
 
caba3df
c948119
77ccce3
 
 
 
 
 
c948119
 
 
 
1bce76e
77ccce3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cc55ddf
77ccce3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
---
task_categories:
- object-detection
tags:
- roboflow
- roboflow2huggingface
- Volcanoes
- Plumes
- UAVs
- Drone
dataset_info:
  features:
  - name: image_id
    dtype: int64
  - name: image
    dtype: image
  - name: width
    dtype: int32
  - name: height
    dtype: int32
  - name: objects
    sequence:
    - name: id
      dtype: int64
    - name: area
      dtype: int64
    - name: bbox
      sequence: float32
      length: 4
    - name: category
      dtype:
        class_label:
          names:
            '0': plume
            '1': summit
  splits:
  - name: train
    num_bytes: 29846342.127
    num_examples: 1211
  - name: validation
    num_bytes: 7311174
    num_examples: 294
  - name: test
    num_bytes: 12048406
    num_examples: 456
  download_size: 49324639
  dataset_size: 49205922.127000004
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
  - split: test
    path: data/test-*
license: mit
language:
- en
---

<div align="center">
  <img width=100% alt="edouard-rolland/volcanic-plumes" src="https://huggingface.co/datasets/edouard-rolland/volcanic-plumes/resolve/main/thumbnail.png">
</div>

### Dataset Description

The dataset presents labelled pictures of plumes and of the Fuego Summit in Guatemala. The data was collected by the University of Bristol Flight Lab in Guatemala from March 22 to April 3, 2019. The drone used for this purpose was a Skywalker X8, equipped with a Pixhawk onboard computer running ArduPlane 3.7.1 and a Raspberry Pi 3B+ for mission management and communication with the ground station. The drone was also equipped of a GoPro Hero 9.

### Citation

```
@misc{
}
```

### Acknowledgement

This work is supported by the WildDrone MSCA Doctoral Network funded by EU Horizon Europe under grant agreement no. 101071224, the Innovation Fund Denmark for the project DIREC (9142-00001B), and by the Engineering & Physical Sciences Research Council (UK) through the CASCADE (Complex Autonomous aircraft Systems Configuration, Analysis and Design Exploratory) programme grant (EP/R009953/1).


### Dataset Labels

```
['plume', 'summit']
```

### Example of Labelled Images

<div align="center">
  <<img width=50% alt="edouard-rolland/volcanic-plumes" src="https://huggingface.co/datasets/edouard-rolland/volcanic-plumes/resolve/main/val_batch0_labels.jpg">
</div>

### Number of Images

```json
{'valid': 294, 'test': 456, 'train': 1211}
```
### Example of Application

The dataset was used to train a YOLOv8 neural network. More details can be found in the paper mentioned in the citation section. The following video presents the model output for an entire flight.

[![YOLOv8](https://huggingface.co/datasets/edouard-rolland/volcanic-plumes/resolve/main/youtube_t.png)](https://www.youtube.com/watch?v=pSGYUPancfA)


### How to Use

- Install [datasets](https://pypi.org/project/datasets/):

```bash
pip install datasets
```

- Load the dataset:

```python
from datasets import load_dataset

ds = load_dataset("edouard-rolland/volcanic-plumes", name="full")
example = ds['train'][0]
```

### License
MIT