Skip to content

Instantly share code, notes, and snippets.

name: "Facex-Lanamark-Net-7Conv-Slim"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 48
input_dim: 48
##################################
layer {
name: "conv0"
type: "Convolution"
name: "Facex-Lanamark-Net-7Conv-s2"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 48
input_dim: 48
##################################
layer {
name: "conv0"
type: "Convolution"
name: "tcdcn_conv4_landmarks"
input: "data"
input_shape {
dim: 1
dim: 3
dim: 48
dim: 48
}
layer {
name: "conv1"
name: "Facex-Lanamark-Net-7Conv"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 48
input_dim: 48
##################################
layer {
name: "conv0"
type: "Convolution"
@walkoncross
walkoncross / parsing-binary-file.go
Created June 8, 2018 21:10 — forked from jpetitcolas/parsing-binary-file.go
How to parse a binary file in Go? Snippet based on MoPaQ SC2 replay parsing. Related blog post: http://www.jonathan-petitcolas.com/2014/09/25/parsing-binary-files-in-go.html
package main
import (
"bytes"
"encoding/binary"
"fmt"
"log"
"os"
)
name: "face-pose estimation MobileNetV2 t4"
# transform_param {
# scale: 0.017
# mirror: false
# crop_size: 224
# mean_value: [103.94,116.78,123.68]
# }
# Enter your network definition here.
# Use Shift+Enter to update the visualization.
http://wiki.ubuntu.org.cn/%E6%A8%A1%E6%9D%BF:16.04source
模板:16.04source
deb http://cn.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
##測試版源
deb http://cn.archive.ubuntu.com/ubuntu/ xenial-proposed main restricted universe multiverse
# 源碼
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@walkoncross
walkoncross / bash-zsh-shortcuts.md
Last active December 25, 2017 21:32
Shortcuts to improve your bash & zsh productivity, from: http://www.geekmind.net/2011/01/shortcuts-to-improve-your-bash-zsh.html

Shortcuts to improve your bash & zsh productivity

So, you hate using a terminal? That might be, because you use the arrow keys to navigate character by character through a long command just to change a paramater at the other end of the line, right? Here's a list of my most-used bash & zsh shortcuts, that will definitely boost your productivity and will help you to improve your command line experience.

Shortcut	Action
CTRL + A	Move to the beginning of the line
CTRL + E	Move to the end of the line
CTRL + [left arrow]	Move one word backward (on some systems this is ALT + B)
CTRL + [right arrow]	Move one word forward (on some systems this is ALT + F)
CTRL + U (bash)	Clear the characters on the line before the current cursor position