Skip to content

Instantly share code, notes, and snippets.

View bpinaya's full-sized avatar
🤖
yes HelloWorld | head -10

Benjamin Pinaya bpinaya

🤖
yes HelloWorld | head -10
View GitHub Profile
@bpinaya
bpinaya / pspnet101_cityscapes_713.prototxt
Last active October 17, 2018 13:44
PSPNet Cityscapes for Netscope visualization (No BN layer, use for flow only, used in different caffe fork, check the source repo for more info https://github.com/hszhao/PSPNet). Netscope visualization https://ethereon.github.io/netscope/#/gist/68655ebb16c4274e313f060df0cf7dba
#
input: "data"
input_dim: 1
input_dim: 3
input_dim: 713
input_dim: 713
layer {
name: "conv1_1_3x3_s2"
type: "Convolution"
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bpinaya
bpinaya / VOCDetection.ipynb
Created November 19, 2018 09:31
VOCDetection
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
name: "FCNVGG8"
layer {
name: "input"
type: "Input"
top: "data"
input_param {
# These dimensions are purely for sake of example;
# see infer.py for how to reshape the net to the given input size.
shape { dim: 1 dim: 3 dim: 500 dim: 500 }
}
name: "FCNVGG16Train"
layer {
name: "input"
type: "Input"
top: "data"
top: "label"
input_param {
# These dimensions are purely for sake of example;
# see infer.py for how to reshape the net to the given input size.
shape { dim: 1 dim: 3 dim: 500 dim: 500 }
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
---
Language: Cpp
# BasedOnStyle: Chromium
AccessModifierOffset: -1
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: Left
AlignOperands: true
AlignTrailingComments: true
layer {
name: "input"
type: "Input"
top: "data"
input_param {
shape { dim: 1 dim: 3 dim: 500 dim: 500 }
}
}
layer {
name: "conv1_1"