zhuchi76 commited on
Commit
fba0a2e
1 Parent(s): d9c21c0

Update README to hub

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Real Lifebuoy Dataset for Object Detection
2
+
3
+ ## Overview
4
+ This dataset contains images of real lifebuoy for object detection tasks. It can be used to train and evaluate object detection models.
5
+
6
+ Demo Example:
7
+
8
+ [![Lifebuoy Detection Video](https://img.youtube.com/vi/43IF39-LySI/0.jpg)](https://www.youtube.com/watch?v=43IF39-LySI)
9
+
10
+ Video is available on video/detr_finetuned_2.mp4 or by clicking the image youtube link.
11
+
12
+ Left hand side: 1th finetuned with virtual dataset
13
+ Right hand side: 2nd further finetuned with real dataset
14
+
15
+ [![Lifebuoy Detection Video](https://img.youtube.com/vi/Vyb_iCp4bes/0.jpg)](https://www.youtube.com/watch?v=Vyb_iCp4bes)
16
+
17
+ Video is available on video/detr_finetuned_1vs2.mp4 or by clicking the image youtube link.
18
+
19
+ ## Dataset Structure
20
+
21
+ ### Data Instances
22
+
23
+ A data point comprises an image and its object annotations.
24
+
25
+ ```
26
+
27
+ ```
28
+
29
+ ### Data Fields
30
+
31
+ - `image_id`: the image id
32
+ - `width`: the image width
33
+ - `height`: the image height
34
+ - `objects`: a dictionary containing bounding box metadata for the objects present on the image
35
+ - `id`: the annotation id
36
+ - `area`: the area of the bounding box
37
+ - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format)
38
+ - `category`: the object's category, with possible values including
39
+ - `Lifebuoy` (0)
40
+
41
+
42
+ ### Data Splits
43
+
44
+ - `Training dataset` (540)
45
+ - `Virtual`
46
+ - `Lifebuoy` (540)
47
+
48
+ - `Val dataset` (135)
49
+ - `Virtual`
50
+ - `Lifebuoy` (135)
51
+
52
+
53
+ ## Usage
54
+ ```
55
+ from datasets import load_dataset
56
+
57
+ dataset = load_dataset("ARG-NCTU/Real_Lifebuoy_dataset_2024")
58
+ ```