gitextract_k9abr_mg/ ├── .gitignore ├── README.md ├── example.py ├── setup.py └── shapelets_lts/ ├── __init__.py ├── classification/ │ ├── __init__.py │ └── shapelet_models.py ├── network/ │ ├── __init__.py │ ├── aggregation_layer.py │ ├── cross_entropy_loss_layer.py │ ├── linear_layer.py │ ├── network.py │ ├── sigmoid_layer.py │ └── soft_min_layer.py ├── tests/ │ ├── test_aggregation_layer.py │ ├── test_cross_entropy_loss_layer.py │ ├── test_linear_layer.py │ ├── test_sigmoid_layer.py │ ├── test_soft_min_layer.py │ └── test_utils.py └── util/ ├── __init__.py ├── plotting.py ├── soft_min_layer_factory.py ├── ucr_dataset_loader.py └── utils.py