Mohit505Git commited on
Commit
b9fc57f
·
verified ·
1 Parent(s): 76104c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -3
README.md CHANGED
@@ -1,3 +1,35 @@
1
- ---
2
- license: bsd-3-clause
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DeepVL training dataset
2
+
3
+ ---
4
+ license: bsd-3-clause
5
+ ---
6
+
7
+ ## Introduction
8
+ This dataset repository contains the training and testing datasets used in the paper: ["DeepVL: Dynamics and Inertial Measurements-based Deep Velocity Learning for Underwater Odometry"](https://ntnu-arl.github.io/deepvl-deep-velocity-learning/). The dataset was collected by manually pilotting an underwater robot in a pool and in the Trondhiem fjord.
9
+
10
+ ## Dataset details
11
+ The training data is located in the `train_full` directory and the test data in `test` directory respectively. The training data directory contains trajectories from `traj1` to `traj12`, and testing data contains from `traj1` to `traj2`. Each trajectory contains files described as follows:
12
+
13
+ ```
14
+ trajX/
15
+ ├── alphasense_imu_data.npy # IMU data from Alphasense Sensense | rate: 200Hz
16
+ ├── biases_data.npy # Estimated IMU biases (from ReAqROVIO) | rate: 20Hz
17
+ ├── fcu_imu_data.npy # IMU data from flight control unit | rate: 200Hz
18
+ ├── gravity_b_vec.npy # Gravity vector in body frame | rate: 20Hz
19
+ ├── motor_commands_data.npy # Motor command PWM signals for all 8 thrusters | rate: 200Hz
20
+ ├── orientation_data_Rmat.npy # Orientation matrices (body to world) | rate: 20Hz
21
+ ├── supervision_odom_data.npy # Ground-truth odometry (from ReAqROVIO) | rate: 20Hz
22
+ ├── battery_data.npy # (Optional) Battery voltage and current | rate: 20Hz
23
+ ```
24
+
25
+ Each file is in `.npy` format and can be loaded and parsed using numpy. In each numpy file the data is organized as:
26
+
27
+ ```
28
+ [data_column_1, data_column_2, ... data_column_N, time_stamp_column]
29
+ ```
30
+
31
+ ## Contact
32
+ For questions or support, contact authors:
33
+
34
+ * [Mohit Singh](mailto:mohit.singh@ntnu.no)
35
+ * [Kostas Alexis](mailto:konstantinos.alexis@ntnu.no)