Xception
as in paper
name: "ResNeXt" | |
input: "data" | |
input_shape { | |
dim: 1 | |
dim: 3 | |
dim: 224 | |
dim: 224 | |
} | |
layer { | |
name: "conv1" |
name: "DenseNet" | |
input: "data" | |
input_shape { | |
dim: 1 | |
dim: 3 | |
dim: 224 | |
dim: 224 | |
} | |
layer { | |
name: "conv1" |
Xception
as in paper
name: "Inception-ResNet-v2" | |
input: "data" | |
input_shape { | |
dim: 1 | |
dim: 3 | |
dim: 299 | |
dim: 299 | |
} | |
layer { | |
name: "conv1_3x3_s2" |
Inception-v4
as in paper
Inception-v3 architecture
as in paper
name: "MOBILENET" | |
# transform_param { | |
# scale: 0.017 | |
# mirror: false | |
# crop_size: 224 | |
# mean_value: [103.94,116.78,123.68] | |
# } | |
input: "data" | |
input_dim: 1 | |
input_dim: 3 |
Xception: Depthwise Separable Convolutions
The Xception Paper: https://arxiv.org/abs/1610.02357
Caffe model from https://github.com/yihui-he/Xception-caffe
ResNet 50
The ResNet Paper: http://arxiv.org/abs/1512.03385
Note this file is only for visualization, not for training or deployment.
name: "nin_imagenet" | |
layers { | |
top: "data" | |
top: "label" | |
name: "data" | |
type: DATA | |
data_param { | |
source: "/IMAGENET-LMDB/imagenet-train-lmdb" | |
backend: LMDB | |
batch_size: 64 |