├── .gitignore ├── README.md ├── data_generate.py ├── data_generate_forBSD.py ├── loss_functions.py ├── model ├── ResNeXt.py ├── ResNet.py ├── pcb_model.py ├── rcf_model_resnet.py ├── rcf_model_resnext.py └── rcf_model_vgg.py ├── pictures └── model struct.png ├── test.py ├── train.py └── train_PCB.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/README.md -------------------------------------------------------------------------------- /data_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/data_generate.py -------------------------------------------------------------------------------- /data_generate_forBSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/data_generate_forBSD.py -------------------------------------------------------------------------------- /loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/loss_functions.py -------------------------------------------------------------------------------- /model/ResNeXt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/model/ResNeXt.py -------------------------------------------------------------------------------- /model/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/model/ResNet.py -------------------------------------------------------------------------------- /model/pcb_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/model/pcb_model.py -------------------------------------------------------------------------------- /model/rcf_model_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/model/rcf_model_resnet.py -------------------------------------------------------------------------------- /model/rcf_model_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/model/rcf_model_resnext.py -------------------------------------------------------------------------------- /model/rcf_model_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/model/rcf_model_vgg.py -------------------------------------------------------------------------------- /pictures/model struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/pictures/model struct.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/train.py -------------------------------------------------------------------------------- /train_PCB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fupiao1998/RCF-keras/HEAD/train_PCB.py --------------------------------------------------------------------------------