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

BOX-LEO/FCN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ResNet based FCN

source list:

source description
data set Kitti dataset
FCN16.py FCN-16 model, ResNet18 as pretrain classification model
FCN32.py FCN-32 model, ResNet18 as pretrain classification model
KittiDataset.py custom dataset for semantic segmentation
experiment.py 1. dataset splitting 2. training and validation processing
test.py test process
labels.py Kitti labels definition

Setting:

Unlike original FCN setting, both FCN in this report are based on ResNet18

All image are resize to (H: 375, W: 1242) to improve parallelism.

max_lr epoch weight_decay batch size n_class criterion optimizer
1e-3 30 1e-4 10 34 cross entropy Adam

Evaluation metrics:

  1. Pixel-level intersection-over-union (pIoU)
  2. Mean Intersection-over-Union (mIoU)

Training and Validation

FCN16 FCN32
fcn16_e30_result fcn32_e30_result

Test Result

FCN-16 FCN-32
loss 1.28 1.61
mIoU 0.46 0.34
pIoU fcn16_test_pIoU fcn32_test_pIoU

test_result

Reference

Kaggle, github_fcn, github_layergetter, FCN, ResNet

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0