gitextract__t5w6mwm/ ├── LICENSE ├── README.md ├── data/ │ ├── har/ │ │ ├── README.txt │ │ ├── activity_labels.txt │ │ ├── features.txt │ │ ├── features_info.txt │ │ ├── test/ │ │ │ ├── Inertial Signals/ │ │ │ │ ├── body_acc_x_test.txt │ │ │ │ ├── body_acc_y_test.txt │ │ │ │ ├── body_acc_z_test.txt │ │ │ │ ├── body_gyro_x_test.txt │ │ │ │ ├── body_gyro_y_test.txt │ │ │ │ ├── body_gyro_z_test.txt │ │ │ │ ├── total_acc_x_test.txt │ │ │ │ ├── total_acc_y_test.txt │ │ │ │ └── total_acc_z_test.txt │ │ │ ├── X_test.txt │ │ │ ├── subject_test.txt │ │ │ └── y_test.txt │ │ └── train/ │ │ ├── Inertial Signals/ │ │ │ ├── body_acc_x_train.txt │ │ │ ├── body_acc_y_train.txt │ │ │ ├── body_acc_z_train.txt │ │ │ ├── body_gyro_x_train.txt │ │ │ ├── body_gyro_y_train.txt │ │ │ ├── body_gyro_z_train.txt │ │ │ ├── total_acc_x_train.txt │ │ │ ├── total_acc_y_train.txt │ │ │ └── total_acc_z_train.txt │ │ ├── X_train.txt │ │ ├── subject_train.txt │ │ └── y_train.txt │ ├── pendigits/ │ │ ├── pendigits.names │ │ ├── pendigits.tes │ │ └── pendigits.tra │ └── usps/ │ ├── usps_test.jf │ └── usps_train.jf ├── datasets.py ├── n2d.py ├── requirements.txt ├── run.sh └── weights/ ├── fashion-1000-ae_weights.h5 ├── har-1000-ae_weights.h5 ├── mnist-1000-ae_weights.h5 ├── mnist-test-1000-ae_weights.h5 ├── pendigits-1000-ae_weights.h5 └── usps-1000-ae_weights.h5