danilobarbalace commited on
Commit
34a7e33
·
verified ·
1 Parent(s): 644ace5

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +127 -0
README.md ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ # For reference on dataset card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/datasetcard.md?plain=1
3
+ # Doc / guide: https://huggingface.co/docs/hub/datasets-cards
4
+ {}
5
+ ---
6
+
7
+ # Dataset Card for Vehicle Dynamics Dataset
8
+
9
+ <!-- Provide a quick summary of the dataset. -->
10
+
11
+ This dataset contains time-series data capturing vehicle motion events such as braking, hard braking, acceleration, and hard acceleration, derived from simulated accelerometer data. It is designed to support research in vehicle dynamics, motion analysis, and driving behavior.
12
+
13
+ ## Dataset Details
14
+
15
+ ### Dataset Description
16
+
17
+ <!-- Provide a longer summary of what this dataset is. -->
18
+
19
+ The dataset provides accelerometer readings on three axes (X, Y, Z) along with annotated events based on predefined thresholds for braking, hard braking, acceleration, and hard acceleration. It includes data grouped into 10-second intervals for easy aggregation and analysis.
20
+
21
+ ### Dataset Sources [optional]
22
+
23
+ <!-- Provide the basic links for the dataset. -->
24
+
25
+ - **Repository:** [More Information Needed]
26
+ - **Paper [optional]:** [More Information Needed]
27
+ - **Demo [optional]:** [More Information Needed]
28
+
29
+ ## Uses
30
+
31
+ <!-- Address questions around how the dataset is intended to be used. -->
32
+
33
+ ### Direct Use
34
+
35
+ <!-- This section describes suitable use cases for the dataset. -->
36
+
37
+ The dataset is suitable for:
38
+
39
+ - Training and evaluating machine learning models for detecting vehicle motion events.
40
+ - Analyzing driving behavior under different conditions.
41
+ - Research on vehicle safety systems.
42
+
43
+ ### Out-of-Scope Use
44
+
45
+ <!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
46
+
47
+ - Real-world deployment without testing with real-world data.
48
+ - Applications outside the context of vehicle dynamics.
49
+
50
+ ## Dataset Structure
51
+
52
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
53
+
54
+ The dataset contains the following columns:
55
+
56
+ - **Timestamp**: The timestamp of the reading.
57
+ - **AccelerationX, AccelerationY, AccelerationZ**: Accelerometer readings along the three axes.
58
+ - **Braking, HardBraking, Acceleration, HardAcceleration**: Boolean flags for motion events.
59
+ - **TimeGroup**: 10-second interval grouping.
60
+ - **Output**: The dominant event type in each interval.
61
+
62
+ ## Dataset Creation
63
+
64
+ ### Curation Rationale
65
+
66
+ <!-- Motivation for the creation of this dataset. -->
67
+
68
+ The dataset was created to simulate and analyze vehicle motion events to support research and development in vehicle safety and dynamics.
69
+
70
+ ### Source Data
71
+
72
+ <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
73
+
74
+ #### Data Collection and Processing
75
+
76
+ <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
77
+
78
+ The data was simulated using randomized accelerometer readings and thresholds for braking and acceleration events. It was then processed and annotated using Python libraries such as Pandas and NumPy.
79
+
80
+
81
+
82
+ #### Annotation process
83
+
84
+ <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
85
+
86
+ Annotations were programmatically added based on predefined thresholds for motion events.
87
+
88
+ #### Who are the annotators?
89
+
90
+ <!-- This section describes the people or systems who created the annotations. -->
91
+
92
+ The annotations were generated automatically using Python scripts.
93
+
94
+ #### Personal and Sensitive Information
95
+
96
+ <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
97
+
98
+ The dataset does not contain personal or sensitive information.
99
+
100
+ ## Bias, Risks, and Limitations
101
+
102
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
103
+
104
+ The dataset is simulated and may not fully represent real-world scenarios. Use caution when applying models trained on this dataset to real-world data.
105
+
106
+ ### Recommendations
107
+
108
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
109
+
110
+ Users should validate models with real-world data before deploying them in production systems.
111
+
112
+
113
+ ## Glossary [optional]
114
+
115
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
116
+
117
+ - **Braking**: A reduction in velocity, identified by negative acceleration.
118
+ - **Hard Braking**: Significant reduction in velocity, crossing a higher negative threshold.
119
+ - **Acceleration**: An increase in velocity, identified by positive acceleration.
120
+ - **Hard Acceleration**: Significant increase in velocity, crossing a higher positive threshold.
121
+
122
+ ## More Information [optional]
123
+
124
+ [More Information Needed]
125
+
126
+
127
+