
机器学习
羞羞的铁脚
王雪涛
展开
-
python 3.6下安装visdom
1 安装visdompip install visdom2 启动vidompython -m visdom.server如果此时卡在downloading(1) C:\Python3.6\Lib\site-packages\visdom\server.py 在download_scripts()添加打印下载所需文件的代码记录需要下载的文件如下:https...原创 2020-02-10 19:47:29 · 1645 阅读 · 1 评论 -
编译Dlib 19.16并在vs程序中调用
编译Dlib 19.16并在vs程序中调用1 下载dlib和cmake 在 http://dlib.net/faq.html 上下载dlib 在https://cmake.org/download/下载cmake 安装非常简单过程略2 安装vs2015 vs2017应该也能编译成功,但自己试了很...原创 2018-11-07 18:13:22 · 1322 阅读 · 2 评论 -
CUDA Driver Version is insufficient for CUDA runtime version
CUDA Driver Version is insufficient for CUDA runtime version 最近使用Darknet 测试目标检测,发现在自己电脑上开发的程序放到公司电脑中运行没有反应,不报任何错误,最终发现这个问题是由于显卡驱动版本太低造成的。 我的电脑的GPU型号是Quadro P5000,安装了CUDA...原创 2018-11-15 13:46:50 · 1209 阅读 · 0 评论 -
TensorFlow 学习笔记1-tf.stack的用法
tf.stack的用法1 tf.stack tf.stack用于拼接两个tf 张量,拼接可以在不同的维度上进行,拼接后的新张量维度加1 例子1:拼接1维数组:x1=tf.constant([1,2,3])# shape:(3)x2=tf.constant([3,4,5])# shape: (3)#在第...原创 2018-12-12 22:47:15 · 2327 阅读 · 0 评论 -
如何使用YoloV3 训练自己的目标检测模型
使用YoloV3 训练自己的目标检测模型参考资料: https://github.com/AlexeyAB/darknet#how-to-train-to-detect-your-custom-objects编译darknet.exe : 1使用vs2015 打开,修改darknet.vcxproj里的cuda版本为你的...原创 2018-12-18 15:06:34 · 6717 阅读 · 3 评论 -
神经网络Softmax层 Python实现
Softmax Python实现一 、不使用one-hot编码import numpy as npdef data_loss_softmax(scores, labels): num_examples = scores.shape[0] exp_scores = np.exp(sc...原创 2019-05-20 15:43:26 · 2462 阅读 · 0 评论