Bingsu commited on
Commit
d2219e9
1 Parent(s): 6b53bb5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ languages:
3
+ - en
4
+ licenses:
5
+ - odbl-1.0
6
+ pretty_name: Human Action Recognition
7
+ size_categories:
8
+ - 1K<n<10K
9
+ source_datasets:
10
+ - original
11
+ task_categories:
12
+ - image-classification
13
+ ---
14
+
15
+ ## Dataset Description
16
+ - **Homepage:** [Human Action Recognition (HAR) Dataset](https://www.kaggle.com/datasets/meetnagadia/human-action-recognition-har-dataset)
17
+ - **Repository:** N/A
18
+ - **Paper:** N/A
19
+ - **Leaderboard:** N/A
20
+ - **Point of Contact:** N/A
21
+
22
+ ## Dataset Summary
23
+ A dataset from [kaggle](https://www.kaggle.com/datasets/meetnagadia/human-action-recognition-har-dataset). origin: https://dphi.tech/challenges/data-sprint-76-human-activity-recognition/233/data
24
+
25
+ ### Introduction
26
+
27
+ - The dataset features 15 different classes of Human Activities.
28
+ - The dataset contains about 12k+ labelled images including the validation images.
29
+ - Each image has only one human activity category and are saved in separate folders of the labelled classes
30
+
31
+ ### PROBLEM STATEMENT
32
+
33
+ - Human Action Recognition (HAR) aims to understand human behavior and assign a label to each action. It has a wide range of applications, and therefore has been attracting increasing attention in the field of computer vision. Human actions can be represented using various data modalities, such as RGB, skeleton, depth, infrared, point cloud, event stream, audio, acceleration, radar, and WiFi signal, which encode different sources of useful yet distinct information and have various advantages depending on the application scenarios.
34
+ - Consequently, lots of existing works have attempted to investigate different types of approaches for HAR using various modalities.
35
+ - Your Task is to build an Image Classification Model using CNN that classifies to which class of activity a human is performing.
36
+
37
+ ### About Files
38
+
39
+ - Train - contains all the images that are to be used for training your model. In this folder you will find 15 folders namely - 'calling', ’clapping’, ’cycling’, ’dancing’, ‘drinking’, ‘eating’, ‘fighting’, ‘hugging’, ‘laughing’, ‘listeningtomusic’, ‘running’, ‘sitting’, ‘sleeping’, texting’, ‘using_laptop’ which contain the images of the respective human activities.
40
+ - Test - contains 5400 images of Human Activities. For these images you are required to make predictions as the respective class names -'calling', ’clapping’, ’cycling’, ’dancing’, ‘drinking’, ‘eating’, ‘fighting’, ‘hugging’, ‘laughing’, ‘listeningtomusic’, ‘running’, ‘sitting’, ‘sleeping’, texting’, ‘using_laptop’.
41
+ - Testing_set.csv - this is the order of the predictions for each image that is to be submitted on the platform. Make sure the predictions you download are with their image’s filename in the same order as given in this file.
42
+ - sample_submission: This is a csv file that contains the sample submission for the data sprint.
43
+
44
+ ### Data Fields
45
+ The data instances have the following fields:
46
+ - `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`.
47
+ - `labels`: an `int` classification label. All `test` data is labeled 0.
48
+
49
+ ### Class Label Mappings:
50
+ ```
51
+ {
52
+ 'calling': 0,
53
+ 'clapping': 1,
54
+ 'cycling': 2,
55
+ 'dancing': 3,
56
+ 'drinking': 4,
57
+ 'eating': 5,
58
+ 'fighting': 6,
59
+ 'hugging': 7,
60
+ 'laughing': 8,
61
+ 'listening_to_music': 9,
62
+ 'running': 10,
63
+ 'sitting': 11,
64
+ 'sleeping': 12,
65
+ 'texting': 13,
66
+ 'using_laptop': 14
67
+ }
68
+ ```
69
+
70
+ ### Data Splits
71
+ | | train | test |
72
+ |---------------|--------|-----:|
73
+ | # of examples | 12600 | 5400 |