自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 收藏
  • 关注

转载 NLP基础--词性含义

http://blog.csdn.net/heyongluoyao8/article/details/43731743NOUN n,VERB v ,ADJ a, ADV r, ADJ_SAT s    NOUN: [('s', ''), ('ses', 's'), ('ves', 'f'), ('xes', 'x'),               ('zes', 'z'), ('che

2017-12-21 10:36:22 2703

转载 明白的deconv

http://blog.csdn.net/fate_fjh/article/details/52882134https://zhuanlan.zhihu.com/p/27099017

2017-11-29 19:02:46 1295

转载 最近看的目标检测

http://blog.csdn.net/linolzhang/article/details/54344350    目标检测-RCNN系列http://blog.csdn.net/smf0504/article/details/52745070  SSDhttp://blog.csdn.net/linolzhang/article/details/71774168

2017-11-27 15:46:07 228

转载 准确率(Accuracy), 精确率(Precision), 召回率(Recall)和F1-Measure

https://www.cnblogs.com/sddai/p/5696870.html

2017-11-12 23:48:54 406

转载 解决Caffe训练过程中loss不变问题

http://blog.csdn.net/u010911921/article/details/71079367http://www.mamicode.com/info-detail-1716297.htmlloss一直是87.3365,accuracy 一直是0,可能的原因是:标签的问题: imagelist中,图像分类的标签label一定要从0开

2017-11-08 15:28:42 1389

原创 Check failed: error == cudaSuccess (2 vs. 0) out of memory

finitune  googlenet时,train未报错,test时报了,stackflow里面的回答1.减小mini_batch2.减小图片大小3.升级GPU(stackflow里面一般都是8G-12G的,别的CS的实验室好像直接就用的GTX 1080,可以考虑)

2017-11-08 11:49:47 1212

转载 图像语义分割之FCN和CRF

http://m.blog.csdn.net/u012759136/article/details/52434826

2017-09-02 14:01:57 282

原创 二分查找--bisect

Bisect模块提供的函数有:bisect.bisect_left(a,x, lo=0, hi=len(a)) :查找在有序列表 a 中插入 x 的index。lo 和 hi 用于指定列表的区间,默认是使用整个列表。如果 x 已经存在,在其左边插入。返回值为 index。bisect.bisect_right(a,x, lo=0, hi=len(a))bisect.bise

2017-08-31 15:32:17 392

原创 初学Tensorflow分布式

先来一些基本的名词解释参考:http://blog.csdn.net/sydpz1987/article/details/51340277客户端(Client)客户端是一个用于建立TensorFlow计算图并创立与集群进行交互的会话层tensorflow::Session 的程序。一般客户端是通过python或C++实现的。一个独立的客户端进程可以同时与多个TensorFl

2017-08-22 15:56:40 236

转载 资源 | 数十种TensorFlow实现案例汇集:代码+笔记

资源 | 数十种TensorFlow实现案例汇集:代码+笔记http://www.cnblogs.com/zhizhan/p/5971423.html#3657598

2017-08-21 21:39:51 214

原创 寻找最大排列问题

匹配问题:n个人选m个东西,其中可能出现某个东西(mi)不被任何人选,或者被很多人选,求:打印出这样的mi,或者说,尽可能的满足更多人的需求(即各自的选择)可以考虑递归,这里是迭代的(类拓扑排序)def max_perm(M): #M表示选择. n=len(M) a=set(range(n)) cnt=[0]*n #cnt[i]==0 for i in A,

2017-07-22 17:38:45 277

原创 LIS:最长非降子序列长度

import sysimport ren=int (raw_input())l=list(input())print l动态规划思想 (O(N^2)) refer:http://www.360doc.com/content/13/0601/00/8076359_289597587.shtml'''le=1d=[1]*nfor i in range(n): for j in

2017-07-08 11:37:23 281

原创 tensorflow 读取图片

用tf.record形式处理打的图片数据比较方便,而且后面sess.run的时候不需要feeddict数据首先,建议直接把读取的数据封装成一个类:class data_reader(): def __init__(self,dict): self.train_images=dict['train'] self.test_images = dict

2017-06-04 20:21:38 1953

原创 leetcode56,58 intervals merge

Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially sorted according to their start times.E

2017-05-25 10:52:05 195

原创 leetcode78 subset

Given a set of distinct integers, nums, return all possible subsets.Note: The solution set must not contain duplicate subsets.If nums = [1,2,3], a solution is: [ ] [1]...这个例子简单一看就能明白提议

2017-05-23 15:38:41 174

原创 leetcode2 multi_string

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return i

2017-05-22 12:00:43 274

原创 tensorflow 注意命名

这个报错不是数据feed的问题,而是等号左边的g_loss经过一次运算后得到了数值结果,覆盖了原来的g_loss操作,tf处理不了这种命名冲突,所以给变量用名字要注意啊g_loss=0.01*gen_s_loss+g_c_loss本身是一个操作。循环执行一次后就报错g_loss = sess.run(g_loss, feed_dict={in_: batch_con,s

2017-05-18 19:46:44 4907 2

原创 通俗易懂反向传播

一文弄懂神经网络中的反向传播法——BackPropagationhttp://www.cnblogs.com/charlotte77/p/5629865.html这个博客通俗易懂,如果还是不能理解的话,建议高等数学(同济六版下册)多元函数微分自学一下,核心就是链式求导,需要注意,神经元所使用的激活(非线性)函数别忘了也求,还有隐层函数可能有多个输出,各个输出路径的偏

2017-05-18 16:19:05 1200

原创 leetcode1--two sum(easy)

每天打卡做题,我这样的懒癌晚期编程渣渣还有救吗???class Solution(object):def twoSum(self, nums, target):""":type nums: List[int]:type target: int:rtype: List[int]"""for i in range(len(nums)):if nums[i]r

2017-05-17 20:26:19 260

转载 Ubuntu16.04 搜狗输入法无法显示中文

http://fiture.me/share/linux-ubuntu/1246.html 一直用得好好的,不知道下载了什么更新导致搜狗输入法,在输入中文的时候,只显示一个悬浮窗。打字的时候什么反应都没有。中文也联想不出来。找了半天,重新安装fcitx/搜狗输入法N次无果,在网上论坛找到了答案,修复了这个问题,记录一下。直接删除其配置文件:rm -rf ~/.confi

2017-04-24 15:31:47 875

转载 tensorflow1.0变化

tensorflow1.0中的改善TensorFlow 1.0 重大功能及改善XLA(实验版):初始版本的XLA,针对TensorFlow图(graph)的专用编译器,面向CPU和GPU。TensorFlow Debugger(tfdbg):命令行界面和API。添加了新的python 3 docker图像。使pip包兼容pypi。TensorFlow现在可以通过 [

2017-04-19 10:16:01 1399

原创 常用tf函数汇总

常用tf函数汇总:http://blog.csdn.net/lenbow/article/details/52181159

2017-04-19 10:10:54 1740

转载 initialize_all_variables报错,改为tf.global_variables_initializer

initialize_all_variables已被弃用,将在2017-03-02之后删除。 说明更新:使用tf.global_variables_initializer代替。原文:http://blog.csdn.net/lwplwf/article/details/54926104

2017-04-19 10:06:30 2156

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除