上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 62 下一页
摘要: 参考:http://blog.sina.com.cn/s/blog_c3c116470102wlv5.html 查看python,numpy,scipy,matplotlib的版本及安装位置: http://blog.sina.com.cn/s/blog_8f70642d0102wov5.html 阅读全文
posted @ 2017-03-31 08:45 牧马人夏峥 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 这次用yolov2做检测时遇到个大坑,折腾了我好几天,特以此文记录之。 一、安装cuda+cudnn 它们的版本必须要匹配,否则训练后检测不出目标! 1、下载cuda8.0.61_375.26_linux.run和cudnn-8.0-linux-x64-v5.1.tgz 2、安装cuda sh cu 阅读全文
posted @ 2017-03-28 10:40 牧马人夏峥 阅读(7808) 评论(0) 推荐(0) 编辑
摘要: 在公司的服务器上安装faster rcnn时,遇到了不少问题: 1、cudnn版本不兼容的问题,解决办法参考: http://blog.csdn.net/WoPawn/article/details/52751614 2、no module named cv conda install OpenCV 阅读全文
posted @ 2017-03-24 20:29 牧马人夏峥 阅读(1156) 评论(0) 推荐(0) 编辑
摘要: 在机器学习领域,通常假设训练数据与测试数据是同分布的,BatchNorm的作用就是深度神经网络训练过程中, 使得每层神经网络的输入保持同分布。 原因:随着深度神经网络层数的增加,训练越来越困难,收敛越来越慢。对于Sigmod激活函数,这意味着输入通 常落在了两端。 BN的作用:将每层的输入变为标准正 阅读全文
posted @ 2017-03-24 08:54 牧马人夏峥 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zhuanlan.zhihu.com/p/24833574 学习论文[1311.2901] Visualizing and Understanding Convolutional Networks 知乎专栏这篇可视化CNN讲的挺不错,我再稍微提炼下。 Visualization 阅读全文
posted @ 2017-01-21 21:48 牧马人夏峥 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/distinct-subsequences/ Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequen 阅读全文
posted @ 2017-01-06 19:52 牧马人夏峥 阅读(239) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/decode-ways/ A message containing letters from A-Z is being encoded to numbers using the following mapping: Given an enc 阅读全文
posted @ 2017-01-05 10:42 牧马人夏峥 阅读(114) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/22334661 阅读全文
posted @ 2017-01-03 21:26 牧马人夏峥 阅读(785) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/interleaving-string/ Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example,Given:s1  阅读全文
posted @ 2016-12-30 11:14 牧马人夏峥 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 找到最低值和最高值 2、 计算差分序列,大于0加入 3、 把交易分成两次,分别完成,最后将利润相加求最大。 4、 Description: Say you have an array for which the ith element is the price of a given stock on 阅读全文
posted @ 2016-12-29 17:07 牧马人夏峥 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 62 下一页