近几年深度学习在物体检测方面出现了许多基于不同框架的网络模型,不同模型需要不同的版本的Python、TensorFlow、Keras、CUDA、cuDNN以及操作系统。不得不说,要把经典物体检测网络的源码都跑通,单配置环境就要浪费很多时间,因为目前兼容这些经典网络的框架和环境还很少。新版的TensorFlow在models的objection-detection模块中包含了fast-rcnn、rf
分类:
系统相关 时间:
2018-10-09 17:07:15
阅读次数:
736
Mask R-CNN Mask R-CNN详解 开源代码: Tensorflow版本代码链接; Keras and TensorFlow版本代码链接; MxNet版本代码链接 ...
分类:
其他好文 时间:
2018-10-07 11:03:11
阅读次数:
221
preprocess Logistic Regression LightGBM 1. 二分类 2.多分类 XGBoost 1. 二分类 处理正负样本不均匀的案例 主要思路 1. 手动调整正负样本比例 2. 过采样 Over Sampling 对训练集里面样本数量较少的类别(少数类)进行过采样,合成新 ...
分类:
其他好文 时间:
2018-10-06 21:36:54
阅读次数:
291
关于Keras:Keras是一个高级神经网络API,用Python编写,能够在TensorFlow,CNTK或Theano之上运行。 使用一下命令安装: 在Keras实施深度学习的步骤 使用Dense类描述完全连接的层。 我们可以指定层中神经元的数量作为第一个参数,将初始化方法指定为第二个参数作为i ...
分类:
其他好文 时间:
2018-10-06 15:30:39
阅读次数:
147
We strongly recommend that you pick either Keras or PyTorch. These are powerful tools that are enjoyable to learn and experiment with. We know them bo ...
分类:
其他好文 时间:
2018-10-05 16:12:13
阅读次数:
175
We perform image classification, one of the computer vision tasks deep learning shines at. As training from scratch is unfeasible in most cases (as it ...
分类:
其他好文 时间:
2018-10-05 16:02:22
阅读次数:
370
Keras 2.2.4 Keras-Applications 1.0.6 Keras-Preprocessing 1.0.5 tensorflow 1.11.0 numpy 1.15.2 pandas 0.23.4 scikit-learn 0.20.0 测试成功 ...
分类:
其他好文 时间:
2018-10-04 18:58:34
阅读次数:
152
作者用游戏的暂停与继续聊明白了checkpoint的作用,在三种主流框架中演示实际使用场景,手动点赞。 转自:https://blog.floydhub.com/checkpointing-tutorial-for-tensorflow-keras-and-pytorch/ Checkpointin ...
分类:
其他好文 时间:
2018-10-04 10:48:29
阅读次数:
820
1 from keras.datasets import cifar10 2 from keras.utils import np_utils 3 import matplotlib.pyplot as plt 4 from keras.models import load_model 5 impo... ...
分类:
其他好文 时间:
2018-10-03 21:20:11
阅读次数:
444
conda create n keras python=3.5 ipykernel activate keras python m ipykernel install user name keras jupyter notebook 使用这种方法安装的 Keras 才能被 Jupyter Noteb ...
分类:
其他好文 时间:
2018-10-03 00:19:31
阅读次数:
607