├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── code ├── Datasets │ ├── README.md │ └── create_dataset_db1.py ├── bash_runs.sh ├── bash_runs_dense.sh ├── bash_runs_mshilb.sh ├── bash_runs_squeeze.sh ├── bash_runs_vgg.sh ├── configs │ ├── atzori_params_0.json │ ├── atzori_params_1.json │ ├── dense_params_0.json │ ├── dense_params_1.json │ ├── dense_params_2.json │ ├── dense_params_3.json │ ├── dense_params_4.json │ ├── dense_params_5.json │ ├── msdense_params_0.json │ ├── msdense_params_1.json │ ├── msdense_params_10.json │ ├── msdense_params_11.json │ ├── msdense_params_12.json │ ├── msdense_params_13.json │ ├── msdense_params_14.json │ ├── msdense_params_15.json │ ├── msdense_params_16.json │ ├── msdense_params_17.json │ ├── msdense_params_18.json │ ├── msdense_params_19.json │ ├── msdense_params_2.json │ ├── msdense_params_20.json │ ├── msdense_params_21.json │ ├── msdense_params_22.json │ ├── msdense_params_23.json │ ├── msdense_params_24.json │ ├── msdense_params_25.json │ ├── msdense_params_26.json │ ├── msdense_params_27.json │ ├── msdense_params_28.json │ ├── msdense_params_29.json │ ├── msdense_params_3.json │ ├── msdense_params_30.json │ ├── msdense_params_31.json │ ├── msdense_params_32.json │ ├── msdense_params_33.json │ ├── msdense_params_34.json │ ├── msdense_params_35.json │ ├── msdense_params_4.json │ ├── msdense_params_5.json │ ├── msdense_params_6.json │ ├── msdense_params_7.json │ ├── msdense_params_8.json │ ├── msdense_params_9.json │ ├── squeeze_params_0.json │ ├── squeeze_params_1.json │ ├── squeeze_params_2.json │ ├── squeeze_params_3.json │ ├── squeeze_params_4.json │ ├── squeeze_params_5.json │ ├── vgg_params_0.json │ ├── vgg_params_1.json │ ├── vgg_params_2.json │ ├── vgg_params_3.json │ ├── vgg_params_4.json │ └── vgg_params_5.json ├── data_tools │ ├── __init__.py │ ├── dataset.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── augmentation.py │ │ ├── preprocessing.py │ │ └── transformations.py │ └── spfc_utils.py ├── model_tools │ ├── __init__.py │ ├── evaluation.py │ └── optimization.py ├── models │ ├── __init__.py │ ├── custom_layers.py │ ├── densenet_utils.py │ ├── multiscale_utils.py │ └── squeezenet_utils.py └── run_experiment_hilbert.py └── imgs └── mshilbnet.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/README.md -------------------------------------------------------------------------------- /code/Datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/Datasets/README.md -------------------------------------------------------------------------------- /code/Datasets/create_dataset_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/Datasets/create_dataset_db1.py -------------------------------------------------------------------------------- /code/bash_runs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/bash_runs.sh -------------------------------------------------------------------------------- /code/bash_runs_dense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/bash_runs_dense.sh -------------------------------------------------------------------------------- /code/bash_runs_mshilb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/bash_runs_mshilb.sh -------------------------------------------------------------------------------- /code/bash_runs_squeeze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/bash_runs_squeeze.sh -------------------------------------------------------------------------------- /code/bash_runs_vgg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/bash_runs_vgg.sh -------------------------------------------------------------------------------- /code/configs/atzori_params_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/atzori_params_0.json -------------------------------------------------------------------------------- /code/configs/atzori_params_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/atzori_params_1.json -------------------------------------------------------------------------------- /code/configs/dense_params_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/dense_params_0.json -------------------------------------------------------------------------------- /code/configs/dense_params_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/dense_params_1.json -------------------------------------------------------------------------------- /code/configs/dense_params_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/dense_params_2.json -------------------------------------------------------------------------------- /code/configs/dense_params_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/dense_params_3.json -------------------------------------------------------------------------------- /code/configs/dense_params_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/dense_params_4.json -------------------------------------------------------------------------------- /code/configs/dense_params_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/dense_params_5.json -------------------------------------------------------------------------------- /code/configs/msdense_params_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_0.json -------------------------------------------------------------------------------- /code/configs/msdense_params_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_1.json -------------------------------------------------------------------------------- /code/configs/msdense_params_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_10.json -------------------------------------------------------------------------------- /code/configs/msdense_params_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_11.json -------------------------------------------------------------------------------- /code/configs/msdense_params_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_12.json -------------------------------------------------------------------------------- /code/configs/msdense_params_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_13.json -------------------------------------------------------------------------------- /code/configs/msdense_params_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_14.json -------------------------------------------------------------------------------- /code/configs/msdense_params_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_15.json -------------------------------------------------------------------------------- /code/configs/msdense_params_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_16.json -------------------------------------------------------------------------------- /code/configs/msdense_params_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_17.json -------------------------------------------------------------------------------- /code/configs/msdense_params_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_18.json -------------------------------------------------------------------------------- /code/configs/msdense_params_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_19.json -------------------------------------------------------------------------------- /code/configs/msdense_params_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_2.json -------------------------------------------------------------------------------- /code/configs/msdense_params_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_20.json -------------------------------------------------------------------------------- /code/configs/msdense_params_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_21.json -------------------------------------------------------------------------------- /code/configs/msdense_params_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_22.json -------------------------------------------------------------------------------- /code/configs/msdense_params_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_23.json -------------------------------------------------------------------------------- /code/configs/msdense_params_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_24.json -------------------------------------------------------------------------------- /code/configs/msdense_params_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_25.json -------------------------------------------------------------------------------- /code/configs/msdense_params_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_26.json -------------------------------------------------------------------------------- /code/configs/msdense_params_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_27.json -------------------------------------------------------------------------------- /code/configs/msdense_params_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_28.json -------------------------------------------------------------------------------- /code/configs/msdense_params_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_29.json -------------------------------------------------------------------------------- /code/configs/msdense_params_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_3.json -------------------------------------------------------------------------------- /code/configs/msdense_params_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_30.json -------------------------------------------------------------------------------- /code/configs/msdense_params_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_31.json -------------------------------------------------------------------------------- /code/configs/msdense_params_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_32.json -------------------------------------------------------------------------------- /code/configs/msdense_params_33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_33.json -------------------------------------------------------------------------------- /code/configs/msdense_params_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_34.json -------------------------------------------------------------------------------- /code/configs/msdense_params_35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_35.json -------------------------------------------------------------------------------- /code/configs/msdense_params_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_4.json -------------------------------------------------------------------------------- /code/configs/msdense_params_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_5.json -------------------------------------------------------------------------------- /code/configs/msdense_params_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_6.json -------------------------------------------------------------------------------- /code/configs/msdense_params_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_7.json -------------------------------------------------------------------------------- /code/configs/msdense_params_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_8.json -------------------------------------------------------------------------------- /code/configs/msdense_params_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/msdense_params_9.json -------------------------------------------------------------------------------- /code/configs/squeeze_params_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/squeeze_params_0.json -------------------------------------------------------------------------------- /code/configs/squeeze_params_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/squeeze_params_1.json -------------------------------------------------------------------------------- /code/configs/squeeze_params_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/squeeze_params_2.json -------------------------------------------------------------------------------- /code/configs/squeeze_params_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/squeeze_params_3.json -------------------------------------------------------------------------------- /code/configs/squeeze_params_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/squeeze_params_4.json -------------------------------------------------------------------------------- /code/configs/squeeze_params_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/squeeze_params_5.json -------------------------------------------------------------------------------- /code/configs/vgg_params_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/vgg_params_0.json -------------------------------------------------------------------------------- /code/configs/vgg_params_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/vgg_params_1.json -------------------------------------------------------------------------------- /code/configs/vgg_params_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/vgg_params_2.json -------------------------------------------------------------------------------- /code/configs/vgg_params_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/vgg_params_3.json -------------------------------------------------------------------------------- /code/configs/vgg_params_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/vgg_params_4.json -------------------------------------------------------------------------------- /code/configs/vgg_params_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/configs/vgg_params_5.json -------------------------------------------------------------------------------- /code/data_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/__init__.py -------------------------------------------------------------------------------- /code/data_tools/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/dataset.py -------------------------------------------------------------------------------- /code/data_tools/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/pipelines/__init__.py -------------------------------------------------------------------------------- /code/data_tools/pipelines/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/pipelines/augmentation.py -------------------------------------------------------------------------------- /code/data_tools/pipelines/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/pipelines/preprocessing.py -------------------------------------------------------------------------------- /code/data_tools/pipelines/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/pipelines/transformations.py -------------------------------------------------------------------------------- /code/data_tools/spfc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/data_tools/spfc_utils.py -------------------------------------------------------------------------------- /code/model_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/model_tools/__init__.py -------------------------------------------------------------------------------- /code/model_tools/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/model_tools/evaluation.py -------------------------------------------------------------------------------- /code/model_tools/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/model_tools/optimization.py -------------------------------------------------------------------------------- /code/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/models/__init__.py -------------------------------------------------------------------------------- /code/models/custom_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/models/custom_layers.py -------------------------------------------------------------------------------- /code/models/densenet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/models/densenet_utils.py -------------------------------------------------------------------------------- /code/models/multiscale_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/models/multiscale_utils.py -------------------------------------------------------------------------------- /code/models/squeezenet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/models/squeezenet_utils.py -------------------------------------------------------------------------------- /code/run_experiment_hilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/code/run_experiment_hilbert.py -------------------------------------------------------------------------------- /imgs/mshilbnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DSIP-UPatras/sEMG-hilbert-curve/HEAD/imgs/mshilbnet.png --------------------------------------------------------------------------------