
个人
hustwayne
。。。。。。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++ 调用tensorflow模型错误
1Not found: Op type not registered 'NonMaxSuppressionV3' in binary running on LAPTOP-C34TSEPV. Make sure the Op and Kernel are registered in the binary running in this process.低版本的tensorflow 调用 高...原创 2019-06-18 16:23:02 · 1681 阅读 · 0 评论 -
二叉树最大深度
# Definition for a binary tree node.# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right = Noneclass Solution: #递归法 def max...原创 2019-07-14 21:28:50 · 238 阅读 · 0 评论 -
对称二叉树(递归+非递归)
# Definition for a binary tree node.# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right = Noneclass Solution:# #递归方法 ...原创 2019-07-15 11:29:03 · 601 阅读 · 0 评论 -
显卡驱动版本 与 cuda版本
cuda和显卡驱动版本TensorFlow安装时需要cuda+对应的显卡驱动。这里给出英伟达官方的cuda和驱动的对应:地址在这里然后在这里可下载最新的显卡驱动(英伟达公版的驱动,程序员友好型)...转载 2019-07-12 01:18:40 · 17689 阅读 · 0 评论 -
leetcode - 520 - 检测大写字母
class Solution: def detectCapitalUse(self, word): """ :type word: str :rtype: bool """ if 65 <= ord(word[0]) <= 90: word = word[1:] ...原创 2018-11-27 23:12:11 · 192 阅读 · 0 评论 -
对抗样本
https://yq.aliyun.com/articles/149583?utm_content=m_27089转载 2019-03-28 10:46:14 · 852 阅读 · 0 评论 -
视频研究(分类,行为识别,检测等)
视频研究入门经典 Labor-Free Video Concept Learningby Jointly Exploiting Web Videos and Images intro: CVPR 2016 intro: Lead–Exceed Neural Network (LENN), LSTM paper: https://www.microsoft.c...转载 2019-04-26 17:06:05 · 4030 阅读 · 0 评论 -
Tensorflow 模型格式及不同的Grpah
转自:Tensorflow 的模型格式一 * .ckpt *. pb variables+.pb1. CheckPoint(*.ckpt)在训练 TensorFlow 模型时,每迭代若干轮需要保存一次权值到磁盘,称为“checkpoint”,如下图所示:这种格式文件是由 tf.train.Saver() 对象调用 saver.save() 生成的,只包含若干 Vari...转载 2019-04-24 00:16:45 · 596 阅读 · 0 评论