自定义博客皮肤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)
  • 资源 (12)
  • 收藏
  • 关注

原创 在Ubuntu16上安装gtkwave

sudo apt-get install tcl8.6-devsudo apt-get install tk8.6-devsudo apt install gperf./configure --with-tcl=/usr/lib/tcl8.6 --with-tk=/usr/lib/tk8.6make -j`nproc`sudo make install

2019-10-15 22:29:36 1744 2

原创 使用vscode remote-ssh进行python编程

使用vscode remote-ssh进行python编程安装Remote-SSH扩展插件连接远程服务器 ${user}@${remote}在远程服务器上安装python插件,EXTENSIONS里面灰色的插件需要在远程安装,可以通过点击绿色**Install in SSH:${remote}**按钮方便的安装配置Workspace setting,配置python.venvPath,使...

2019-09-17 19:55:26 2888

原创 initializers in TensorFow: xavier, He initializer

_compute_fansdef _compute_fans(shape): """Computes the number of input and output units for a weight shape. Args: shape: Integer shape tuple or TF tensor shape. Returns: A tuple of scal...

2018-12-13 23:30:59 1269

原创 deep learning论文阅读总结

mask rcnnfaster rcnnyolov3retinanetgbdtssdSharing Links

2018-12-11 17:34:34 459

原创 Ubuntu 16 安装 Boost 1.68

1. install# uninstall dpkgsudo apt --purge remove libboost-devsudo apt --purge remove libboost-all-devsudo apt --purge autoremove libboost-all-dev# to uninstall the version which we installed fr...

2018-11-23 01:20:51 5812 5

原创 安装最新CMake 3.13.0 on Ubuntu16

wget https://cmake.org/files/v3.13/cmake-3.13.0.tar.gztar -xzvf cmake-3.13.0.tar.gzcd cmake-3.13.0./bootstrap --qt-gui in order to build the cmake-gui tool, appending –qt-gui optionmake -j4sudo...

2018-11-21 17:36:54 6580

原创 安装OpenCV 4 on Ubuntu from source code

mkdir build && cd buildcmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D FORCE_VTK=ON -D WITH_TBB=ON -D WITH_V4L=ON -D WITH_QT=ON -D

2018-11-21 14:49:39 253

原创 vscode python multithread programming terminate unexpectedly

problemimport threadingimport timedef T1_job(): print("T1 start\n") for _ in range(10): time.sleep(0.1) print("T1 finish\n")def T2_job(): print("T2 start\n") print...

2018-09-04 22:19:28 324

原创 xgboost 0.8 GPU training by python API

The binary wheel will support GPU algorithms (gpu_exact, gpu_hist) on machines with NVIDIA GPUs. However, it will not support multi-GPU training; only single GPU will be used [Installation Guide] Fo...

2018-08-30 18:45:19 916

转载 default module reload for Jupyter Notebook

https://stackoverflow.com/a/5399339/8037585 IPython comes with some automatic reloading magic: %load_ext autoreload %autoreload 2It will reload all changed modules every time before execut...

2018-08-26 14:08:35 485

原创 Pascal VOC Dataset Mirror 镜像

Pascal VOC Dataset Mirror The Pascal VOC challenge is a very popular dataset for building and evaluating algorithms for image classification, object detection, and segmentation. However, the websi...

2018-08-14 10:35:01 2225

转载 pylint E1101:Module 'matplotlib.cm' has no 'hot' member @vscode

https://github.com/pytorch/pytorch/issues/701Instead of ignoring, you can now do:[TYPECHECK]# List of members which are set dynamically and missed by pylint inference# system, and so shouldn't...

2018-07-30 22:23:46 4274 1

转载 Build LightGBM with GPU support

official tutorial1) Build LightGBMgit clone --recursive https://github.com/Microsoft/LightGBMcd LightGBMmkdir build ; cd buildcmake -DUSE_GPU=1 -DOpenCL_LIBRARY=/usr/local/cuda/lib64/libOpenCL...

2018-07-23 09:49:08 1034

Flask Web Development, 2nd Edition

原生PDF版本, 排版完美,另外还包含mobi和epub版本文件。 Take full creative control of your web applications with Flask, the Python-based microframework. With the second edition of this hands-on book, you’ll learn the framework from the ground up by developing, step-by-step, a real-world project created by author Miguel Grinberg.

2019-09-08

An Introduction to Parallel Programming

完美pdf Key Features: 1. Takes a tutorial approach, starting with small programming examples and building progressively to more challenging examples 2. Focuses on designing, debugging and evaluating the performance of distributed and shared-memory programs 3. Explains how to develop parallel programs using MPI, Pthreads, and OpenMP programming models

2019-03-04

C Primer Plus, 6th Edition

这个是印刷版的pdf,最清晰,排版完美. 名称:C Primer Plus (6th Edition) (developer's Library) 作者:Stephen Prata

2019-03-04

Python Machine Learning Second Edition

Machine Learning and Deep Learning with Python, scikit-learn, and TensorFlow Sebastian Raschka Vahid Mirjalili

2017-12-14

Machine Learning with TensorFlow Version 10

MEAP Edition Manning Early Access Program Machine Learning with

2017-12-14

Deep Learning with Python, François Chollet

©2018 by Manning Publications Co. All rights reserved. François Chollet works on deep learning at Google in Mountain View, CA. He is the creator of the Keras deep-learning library, as well as a contributor to the TensorFlow machinelearning framework.

2017-12-14

Learning TensorFlow

Learning TensorFlow A GUIDE TO BUILDING DEEP LEARNING SYSTEMS

2017-12-14

空空如也

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

TA关注的人

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