8000 GitHub - xperzy/DefectDetection
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

xperzy/DefectDetection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Implementation of defect detection with transfer learning using PyTorch

To achieve defect detection, you could first use the pre-trained Inception V3 model without freezing any layers. Only the last fully connected layer is going to be modified to fit the two-class defect classification problem. Then, you could feed your own dataset to retrain the entire net. After the process of retraining, the net can learn features from fed images.

In test phase, you will get predictions for different images.

An example of training and testing usage is shown as follows:

  • training:
    python train_v.py --restore=0 --batch_size=64 --epochs=50

  • testing:
    python test_v.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0