Skip to content

barongeng/fcn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fcn - Fully Convolutional Networks

image

image

This is Chainer implementation of fcn.berkeleyvision.org.

Features

  • Provide FCN8s model for Chainer. [v1.0.0]
  • Copy caffemodel to chainermodel. [v1.0.0]
  • Forwarding with Chainer for pascal dataset. [v1.0.0]
  • Training with Chainer for pascal dataset. [v2.0.0]
  • Training for APC2015 dataset. [v3.0.0]

License

Copyright (C) 2016 Kentaro Wada
Released under the MIT license
http://opensource.org/licenses/mit-license.php

For Beginners

Installation

pip install fcn
fcn_install_trained_data.py

Forwarding

Forwarding is done as below, and computation graph is here.

# Download sample image
wget https://farm2.staticflickr.com/1522/26471792680_a485afb024_z_d.jpg -O sample.jpg

# forwaring of the networks
fcn_forward.py --img-files sample.jpg --gpu -1  # cpu mode
fcn_forward.py --img-files sample.jpg  # gpu mode

image

Original Image: https://www.flickr.com/photos/faceme/26471792680/

For Developers

Installation

git clone https://github.com/wkentaro/fcn.git
cd fcn

python setup.py install
fcn_install_trained_data.py

You need to download pascal VOC2012 dataset from here, and install it as below construction:

- fcn - data - pascal - VOC2012 -- JPEGImages
                                 - SegmentationClass
                                 - ...

Fowarding

Forwarding with trained model in caffe is done as below:

# This downloads caffemodel and convert it to chainermodel
./scripts/caffe_to_chainermodel.py

# forwarding of the networks
./scripts/fcn_forward.py --img-files data/pascal/VOC2012/JPEGImages/2007_000129.jpg

image

Original Image: http://host.robots.ox.ac.uk/pascal/VOC/voc2012/

Training

./scripts/fcn_train.py

Currently we support only training FCN32s. The learning curve looks like below:

image

Forwarding with fcn32s_60000.chainermodel ends with below result:

image

About

Fully Convolutional Networks (Chainer Implementation)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%