This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "tcdcn_conv4_landmarks" | |
input: "data" | |
input_shape { | |
dim: 1 | |
dim: 3 | |
dim: 48 | |
dim: 48 | |
} | |
layer { | |
name: "conv1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Facex-Lanamark-Net-7Conv" | |
input: "data" | |
input_dim: 1 | |
input_dim: 3 | |
input_dim: 48 | |
input_dim: 48 | |
################################## | |
layer { | |
name: "conv0" | |
type: "Convolution" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"encoding/binary" | |
"fmt" | |
"log" | |
"os" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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