自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (2)
  • 收藏
  • 关注

原创 opencv read images in BGR channels

import sysimport dlibfrom skimage import ioimport cv2# Load the image into a arrayimage = io.imread(file_name)array([[[255, 255, 255], [255, 255, 255], [255, 255, 255], ..., ...

2018-03-08 20:11:25 429

原创 Install Dlib on Ubuntu

sudo apt-get install build-essential cmake pkg-configsudo apt-get install libx11-dev libatlas-base-devsudo apt-get install libgtk-3-dev libboost-python-devpip3 install numpy scipy matplotlib scikit-im...

2018-03-03 22:33:36 353

原创 Important Package

numpyscipypandasmatplotlibsklearnopencv-pythonscikit-imageh5pytflearn

2018-03-03 01:47:20 223

原创 Ubuntu problem

software source:deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiversedeb http://mirr...

2018-03-03 01:42:51 250

原创 docker command

# present all containerssudo docker ps -a# present all images sudo docker images -a# remove containersudo docker container rm <CONTAINER ID># remove imagesudo docker rmi <IMAGE ID># create...

2018-03-03 01:21:20 318

原创 docker proxy

vim /etc/default/docker# Docker Upstart and SysVinit configuration file## THIS FILE DOES NOT APPLY TO SYSTEMD##   Please see the documentation for "systemd drop-ins":#   https://docs.docker.com/engine...

2018-03-03 01:09:53 1195

原创 CNN learning

wikipedia: https://en.wikipedia.org/wiki/Convolutional_neural_network#Pooling_layer

2018-03-02 21:09:34 328

原创 TFlearn learning

 TFlearn example github: https://github.com/tflearn/tflearn/tree/master/examples#tflearn-examplesTFlearn docs: http://tflearn.org/

2018-03-02 21:08:32 285

原创 dlib function

class dlib.image_windowThis is a GUI window capable of showing images on the screen.

2018-03-02 20:58:31 280

原创 useful opencv function

Python: cv2.resize(src, dsize[, dst[, fx[, fy[, interpolation]]]]) image = cv2.imread('ironman.png')gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)link address: https://extr3metech.wordpress.com/...

2018-03-02 16:07:44 233

原创 CIFAR-10 model

# Import tflearn and some helpersimport numpy as npimport tflearnfrom tflearn.data_utils import shuffle, to_categoricalfrom tflearn.layers.core import input_data, dropout, fully_connectedfrom tfl...

2018-03-02 13:44:24 561

原创 google colab

upload file in colab: from google.colab import filesuploaded = files.upload()open "pickled" object:def unpickle(file): import pickle with open(file, 'rb') as fo: dict = pickle.load(fo...

2018-03-02 13:25:47 1828

原创 worth to read

Machine Learning is Fun! Part3: Deep Learning and Convolutionallink address: https://medium.com/@ageitgey/machine-learning-is-fun-part-3-deep-learning-and-convolutional-neural-networks-f40359318721

2018-03-02 00:29:33 450

R for Data Science

清晰R数据科学实战

2017-08-25

Neural Network Design (2nd Edition)

如何设计神经网络,里面讲原理了

2017-08-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除