├── .gitignore ├── Datasets ├── PrototypicalData.py └── SiameseData.py ├── History ├── prototypical_acc.png └── prototypical_loss.png ├── Loss ├── MatchLoss.py └── PrototypicalLoss.py ├── Matching.py ├── PrepareData ├── CWRU.py ├── __init__.py └── preprocess.py ├── Prototypical.py ├── PrototypicalNets ├── CNN1D.py └── MLPNet.py ├── README.md ├── Sampler └── BatchSampler.py ├── Siamese.py ├── SiameseNets ├── CNN1D.py └── MLPNet.py └── Utils ├── logger.py └── utilis.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/.gitignore -------------------------------------------------------------------------------- /Datasets/PrototypicalData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Datasets/PrototypicalData.py -------------------------------------------------------------------------------- /Datasets/SiameseData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Datasets/SiameseData.py -------------------------------------------------------------------------------- /History/prototypical_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/History/prototypical_acc.png -------------------------------------------------------------------------------- /History/prototypical_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/History/prototypical_loss.png -------------------------------------------------------------------------------- /Loss/MatchLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Loss/MatchLoss.py -------------------------------------------------------------------------------- /Loss/PrototypicalLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Loss/PrototypicalLoss.py -------------------------------------------------------------------------------- /Matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Matching.py -------------------------------------------------------------------------------- /PrepareData/CWRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/PrepareData/CWRU.py -------------------------------------------------------------------------------- /PrepareData/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PrepareData/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/PrepareData/preprocess.py -------------------------------------------------------------------------------- /Prototypical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Prototypical.py -------------------------------------------------------------------------------- /PrototypicalNets/CNN1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/PrototypicalNets/CNN1D.py -------------------------------------------------------------------------------- /PrototypicalNets/MLPNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/PrototypicalNets/MLPNet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/README.md -------------------------------------------------------------------------------- /Sampler/BatchSampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Sampler/BatchSampler.py -------------------------------------------------------------------------------- /Siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Siamese.py -------------------------------------------------------------------------------- /SiameseNets/CNN1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/SiameseNets/CNN1D.py -------------------------------------------------------------------------------- /SiameseNets/MLPNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/SiameseNets/MLPNet.py -------------------------------------------------------------------------------- /Utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Utils/logger.py -------------------------------------------------------------------------------- /Utils/utilis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xiaohan-Chen/few-shot-fault-diagnosis/HEAD/Utils/utilis.py --------------------------------------------------------------------------------