├── .gitignore ├── LICENSE ├── README.md ├── callbacks └── lr_scheduler.py ├── data ├── datasetInfo.py ├── generateDepthData.py ├── generateOFData.py ├── generateRGBData.py ├── generateSilhouetteData.py ├── mj_augmentation.py ├── mj_dataGeneratorMMUWYHBothDatasets.py ├── mj_dataGeneratorMMUWYHsingle.py ├── mj_dataGeneratorMMUWYHsingle_repetitions.py ├── mj_datasetinfo.py ├── mj_tfdata.py ├── mj_tumgaid.py └── mj_utils.py ├── images ├── README.md ├── gaitmiss_loss.png └── ugaitnet_tifs.png ├── mains ├── mj_testUWYHGaitNet_open_casiab.py ├── mj_testUWYHGaitNet_open_tum.py ├── mj_trainUWYHGaitNet_DataGen_1mod.py ├── mj_trainUWYHGaitNet_DataGen_1mod_BothDatasets.py ├── mj_trainUWYHGaitNet_DataGen_2mod_BothDatasets.py ├── mj_trainUWYHGaitNet_DataGen_3mods.py ├── mj_trainUWYHGaitNet_DataGen_CasiaB.py └── mj_trainUWYHGaitNet_DataGen_CasiaB_1mod.py ├── nets ├── aux_loss.py ├── mj_loss.py ├── mj_metrics.py ├── mj_utils.py ├── mj_uwyhNets_ba.py ├── mj_uwyhNets_bothDatasets.py └── triplet_loss_all.py └── utils ├── mj_netUtils.py ├── mj_utils.py └── rd_JSONInfo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/README.md -------------------------------------------------------------------------------- /callbacks/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/callbacks/lr_scheduler.py -------------------------------------------------------------------------------- /data/datasetInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/datasetInfo.py -------------------------------------------------------------------------------- /data/generateDepthData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/generateDepthData.py -------------------------------------------------------------------------------- /data/generateOFData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/generateOFData.py -------------------------------------------------------------------------------- /data/generateRGBData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/generateRGBData.py -------------------------------------------------------------------------------- /data/generateSilhouetteData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/generateSilhouetteData.py -------------------------------------------------------------------------------- /data/mj_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_augmentation.py -------------------------------------------------------------------------------- /data/mj_dataGeneratorMMUWYHBothDatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_dataGeneratorMMUWYHBothDatasets.py -------------------------------------------------------------------------------- /data/mj_dataGeneratorMMUWYHsingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_dataGeneratorMMUWYHsingle.py -------------------------------------------------------------------------------- /data/mj_dataGeneratorMMUWYHsingle_repetitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_dataGeneratorMMUWYHsingle_repetitions.py -------------------------------------------------------------------------------- /data/mj_datasetinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_datasetinfo.py -------------------------------------------------------------------------------- /data/mj_tfdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_tfdata.py -------------------------------------------------------------------------------- /data/mj_tumgaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_tumgaid.py -------------------------------------------------------------------------------- /data/mj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/data/mj_utils.py -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- 1 | Place images here 2 | -------------------------------------------------------------------------------- /images/gaitmiss_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/images/gaitmiss_loss.png -------------------------------------------------------------------------------- /images/ugaitnet_tifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/images/ugaitnet_tifs.png -------------------------------------------------------------------------------- /mains/mj_testUWYHGaitNet_open_casiab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_testUWYHGaitNet_open_casiab.py -------------------------------------------------------------------------------- /mains/mj_testUWYHGaitNet_open_tum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_testUWYHGaitNet_open_tum.py -------------------------------------------------------------------------------- /mains/mj_trainUWYHGaitNet_DataGen_1mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_trainUWYHGaitNet_DataGen_1mod.py -------------------------------------------------------------------------------- /mains/mj_trainUWYHGaitNet_DataGen_1mod_BothDatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_trainUWYHGaitNet_DataGen_1mod_BothDatasets.py -------------------------------------------------------------------------------- /mains/mj_trainUWYHGaitNet_DataGen_2mod_BothDatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_trainUWYHGaitNet_DataGen_2mod_BothDatasets.py -------------------------------------------------------------------------------- /mains/mj_trainUWYHGaitNet_DataGen_3mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_trainUWYHGaitNet_DataGen_3mods.py -------------------------------------------------------------------------------- /mains/mj_trainUWYHGaitNet_DataGen_CasiaB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_trainUWYHGaitNet_DataGen_CasiaB.py -------------------------------------------------------------------------------- /mains/mj_trainUWYHGaitNet_DataGen_CasiaB_1mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/mains/mj_trainUWYHGaitNet_DataGen_CasiaB_1mod.py -------------------------------------------------------------------------------- /nets/aux_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/aux_loss.py -------------------------------------------------------------------------------- /nets/mj_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/mj_loss.py -------------------------------------------------------------------------------- /nets/mj_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/mj_metrics.py -------------------------------------------------------------------------------- /nets/mj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/mj_utils.py -------------------------------------------------------------------------------- /nets/mj_uwyhNets_ba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/mj_uwyhNets_ba.py -------------------------------------------------------------------------------- /nets/mj_uwyhNets_bothDatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/mj_uwyhNets_bothDatasets.py -------------------------------------------------------------------------------- /nets/triplet_loss_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/nets/triplet_loss_all.py -------------------------------------------------------------------------------- /utils/mj_netUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/utils/mj_netUtils.py -------------------------------------------------------------------------------- /utils/mj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/utils/mj_utils.py -------------------------------------------------------------------------------- /utils/rd_JSONInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avagait/ugaitnet/HEAD/utils/rd_JSONInfo.py --------------------------------------------------------------------------------