Linux Ubuntu 2016.
- 1080 GTX
- SDK 8.0
- CuDNN 5.1
ulimit -c unlimited
name: "ResNet-50" | |
input: "data" | |
input_shape{ | |
dim: 1 | |
dim: 3 | |
dim: 224 | |
dim: 224 | |
} | |
layer { |
name: "squeezenet" | |
input: "data" | |
input_shape { | |
dim: 1 | |
dim: 3 | |
dim: 227 | |
dim: 227 | |
} | |
layer { |
name: "MOBILENET" | |
layer { | |
name: "data" | |
type: "Input" | |
top: "data" | |
input_param { | |
shape: { | |
dim: 1 | |
dim: 3 | |
dim: 224 |
Author: Chris Lattner
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
#coding=utf8 | |
import itchat | |
# tuling plugin can be get here: | |
# https://github.com/littlecodersh/EasierLife/tree/master/Plugins/Tuling | |
from tuling import get_response | |
@itchat.msg_register('Text') | |
def text_reply(msg): | |
if u'作者' in msg['Text'] or u'主人' in msg['Text']: | |
return u'你可以在这里了解他:https://github.com/littlecodersh' |
// ------------------------------------------------------------------ | |
// Fast R-CNN | |
// Copyright (c) 2015 Microsoft | |
// Licensed under The MIT License [see fast-rcnn/LICENSE for details] | |
// Written by Ross Girshick | |
// ------------------------------------------------------------------ | |
#include <cfloat> | |
#include "caffe/fast_rcnn_layers.hpp" |
OVERVIEW: LLVM 'Clang' Compiler: http://clang.llvm.org | |
USAGE: clang -cc1 [options] <inputs> | |
OPTIONS: | |
-add-plugin <name> Use the named plugin action in addition to the default action | |
-analyze-function <value> | |
Run analysis on specific function | |
-analyzer-checker-help Display the list of analyzer checkers that are available | |
-analyzer-checker <value> |