Skip to content

Commit

Permalink
Add Colornet to Fabrik Zoo (#494)
Browse files Browse the repository at this point in the history
* Add files via upload

* Add files via upload

* Add files via upload

* Update tested_models.md

* Update tested_models.md

* Update tested_models.md
  • Loading branch information
khknopp authored and Ram81 committed Dec 9, 2018
1 parent cfb34f4 commit 0c41f7a
Show file tree
Hide file tree
Showing 4 changed files with 290 additions and 14 deletions.
274 changes: 274 additions & 0 deletions example/caffe/colornet.prototxt
Original file line number Diff line number Diff line change
@@ -0,0 +1,274 @@
name: "Colornet"
layer {
name: "img_lab"
top: "img_lab" # Lab color space
type: "Input"
input_param { shape { dim: 1 dim: 3 dim: 227 dim: 227 } }
}
# **************************
# ***** PROCESS COLORS *****
# **************************
# layer { # Convert to lab
# name: "img_lab"
# type: "ColorConv"
# bottom: "data"
# top: "img_lab"
# propagate_down: false
# color_conv_param {
# input: 0 # BGR
# output: 3 # Lab
# }
# }
layer {
name: "img_slice"
type: "Slice"
bottom: "img_lab"
top: "img_l" # [0,100]
top: "data_ab" # [-110,110]
propagate_down: false
slice_param {
axis: 1
slice_point: 1
}
}
layer {
name: "silence_ab"
type: "Silence"
bottom: "data_ab"
}
layer { # 0-center lightness channel
name: "data_l"
type: "Convolution"
bottom: "img_l"
top: "data_l" # scaled and centered lightness value
propagate_down: false
param {lr_mult: 0 decay_mult: 0}
param {lr_mult: 0 decay_mult: 0}
convolution_param {
kernel_size: 1
num_output: 1
}
}
layer {
name: "conv1"
type: "Convolution"
bottom: "data_l"
top: "conv1"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
convolution_param {
num_output: 96
kernel_size: 11
stride: 4
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu1"
type: "ReLU"
bottom: "conv1"
top: "conv1"
}
layer {
name: "pool1"
type: "Pooling"
bottom: "conv1"
top: "pool1"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "conv2"
type: "Convolution"
bottom: "pool1"
top: "conv2"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
convolution_param {
num_output: 256
pad: 2
kernel_size: 5
group: 2
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 1
}
}
}
layer {
name: "relu2"
type: "ReLU"
bottom: "conv2"
top: "conv2"
}
layer {
name: "pool2"
type: "Pooling"
bottom: "conv2"
top: "pool2"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "conv3"
type: "Convolution"
bottom: "pool2"
top: "conv3"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
convolution_param {
num_output: 384
pad: 1
kernel_size: 3
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 0
}
}
}
layer {
name: "relu3"
type: "ReLU"
bottom: "conv3"
top: "conv3"
}
layer {
name: "conv4"
type: "Convolution"
bottom: "conv3"
top: "conv4"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
convolution_param {
num_output: 384
pad: 1
kernel_size: 3
group: 2
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 1
}
}
}
layer {
name: "relu4"
type: "ReLU"
bottom: "conv4"
top: "conv4"
}
layer {
name: "conv5"
type: "Convolution"
bottom: "conv4"
top: "conv5"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
convolution_param {
num_output: 256
pad: 1
kernel_size: 3
group: 2
weight_filler {
type: "gaussian"
std: 0.01
}
bias_filler {
type: "constant"
value: 1
}
}
}
layer {
name: "relu5"
type: "ReLU"
bottom: "conv5"
top: "conv5"
}
layer {
name: "pool5"
type: "Pooling"
bottom: "conv5"
top: "pool5"
pooling_param {
pool: MAX
kernel_size: 3
stride: 2
}
}
layer {
name: "fc6"
type: "InnerProduct"
bottom: "pool5"
top: "fc6"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
inner_product_param {
num_output: 4096
}
}
layer {
name: "relu6"
type: "ReLU"
bottom: "fc6"
top: "fc6"
}
layer {
name: "drop6"
type: "Dropout"
bottom: "fc6"
top: "fc6"
dropout_param {
dropout_ratio: 0.5
}
}
layer {
name: "fc7"
type: "InnerProduct"
bottom: "fc6"
top: "fc7"
param { lr_mult: 1 decay_mult: 1 }
param { lr_mult: 2 decay_mult: 0 }
inner_product_param {
num_output: 4096
}
}
layer {
name: "relu7"
type: "ReLU"
bottom: "fc7"
top: "fc7"
}
layer {
name: "drop7"
type: "Dropout"
bottom: "fc7"
top: "fc7"
dropout_param {
dropout_ratio: 0.5
}
}
Binary file added ide/static/img/zoo/colornet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 15 additions & 14 deletions ide/static/js/modelZoo.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,37 +24,37 @@ class ModelZoo extends React.Component {
this.refs.caption.className = " ";
this.refs.segmentation.className = " ";
this.refs.vqa.className = " ";
}
}
else if (id == "recognition")
{
this.refs.recognition.className = " ";
}
}
else if (id == "detection")
{
{
this.refs.detection.className = " ";
}
}
else if (id == "retrieval")
{
this.refs.retrieval.className = " ";
}
}
else if (id == "seq2seq")
{
this.refs.seq2seq.className = " ";
}
}
else if (id == "caption")
{
this.refs.caption.className = " ";
}
}
else if (id == "segmentation")
{
this.refs.segmentation.className = " ";
}
}
else if (id == "vqa")
{
this.refs.vqa.className = " ";
}
}
}

componentDidMount() {
let filter = (pattern) => {
let layerCompability = (searchQuery, layerName) => {
Expand All @@ -75,7 +75,7 @@ class ModelZoo extends React.Component {
}
return {
match: seq,
full_match: full_match
full_match: full_match
};
}
for (let elem of $('.col-sm-6')) {
Expand All @@ -90,12 +90,12 @@ class ModelZoo extends React.Component {
}
}
$('#model-search-input').keyup((e) => {
filter(e.target.value);
filter(e.target.value);
});
}

render() {

return (
<div className="sidebar-content">
<div id="wrapper" className="toggle" ref="wrapper1">
Expand Down Expand Up @@ -160,6 +160,7 @@ class ModelZoo extends React.Component {
</div>
<div ref="retrieval">
<ModelElement importNet={this.props.importNet} framework="caffe" id="siamese_mnist" displayName="MNIST Siamese"> </ModelElement>
<ModelElement importNet={this.props.importNet} framework="caffe" id="colornet" displayName="Colornet"> </ModelElement>
</div>
<div ref="seq2seq">
<ModelElement importNet={this.props.importNet} framework="keras" id="textGeneration" displayName="Text Generation"> </ModelElement>
Expand Down
1 change: 1 addition & 0 deletions tutorials/tested_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
### Retrieval

* MNIST Siamese [\[Source\]](https://github.com/BVLC/caffe/tree/master/examples/siamese)[\[Visualise\]](http://fabrik.cloudcv.org/caffe/load?id=20171208113503xgnfd)
* Colornet [\[Source\]](https://github.com/richzhang/colorization/blob/master/models/alexnet_deploy_lab.prototxt)[\[Visualise\]](http://fabrik.cloudcv.org/caffe/load?id=20181208162637cezkh)

### Seq2Seq

Expand Down

0 comments on commit 0c41f7a

Please sign in to comment.