
DL
Jincenter
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mmdetection 安装(1.0rc)
mmdetection 安装(1.0rc) 1.requirements.txt Linux (Windows is not officially supported) Python 3.5+ (Python 2 is not supported) PyTorch 1.1 or higher CUDA 9.0 or higher NCCL 2 GCC(G++) 4.9 or higher mmcv...原创 2019-10-21 18:26:26 · 965 阅读 · 5 评论 -
tensorflow使用GPU训练时的显存占用问题
转自:https://www.cnblogs.com/helloyy/p/7878201.html 查看机器上GPU情况 命令: nvidia-smi 功能:显示机器上gpu的情况 命令: nvidia-smi -l 功能:定时更新显示机器上gpu的情况 命令:watch -n 3 nvidia-smi 功能:设定刷新时间(秒)显示GPU使用情况 其中左上侧有0、1、2、3的编号,转载 2018-01-05 15:54:34 · 4226 阅读 · 0 评论 -
ubuntu tensorflow 安装 object_detection API
一、安装教程: * https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md 二、具体步骤: 1. https://github.com/tensorflow/models 2. 安装protobuf,编译.proto文件 # From te...原创 2018-07-05 10:51:08 · 726 阅读 · 0 评论 -
tf.nn.sigmoid_cross_entropy_with_logits出现负数
tf.nn.sigmoid_cross_entropy_with_logits 使用这个loss函数,出现loss出现负数的情况,在理论情况下,这个函数应该是不会存在负数的情况,查看这个函数的具体表达为: 该函数定义为: tf.nn.sigmoid_cross_entropy_with_logits(_sentinel=None, labels=None, logits=None, name=...转载 2018-12-25 10:39:03 · 2526 阅读 · 0 评论