- 博客(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
1851
1
原创 使用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
2956
原创 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
1325
原创 deep learning论文阅读总结
mask rcnnfaster rcnnyolov3retinanetgbdtssdSharing Links
2018-12-11 17:34:34
503
原创 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
5918
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
6876
原创 安装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
297
原创 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
360
原创 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
960
转载 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
536
原创 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
2349
转载 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
4324
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
1067
Flask Web Development, 2nd Edition
2019-09-08
An Introduction to Parallel Programming
2019-03-04
C Primer Plus, 6th Edition
2019-03-04
Python Machine Learning Second Edition
2017-12-14
Machine Learning with TensorFlow Version 10
2017-12-14
Deep Learning with Python, François Chollet
2017-12-14
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人