摘要: Python 字典与结构化数据1.字典基本结构1.1 创建存储生日的字典birthday = {'Alice':'Ar 1','Bob':'July 7'}1.2 查询生日的小程序while True: print('Enter a name(blank to quit):')... 阅读全文
posted @ 2017-07-21 16:38 CodenameNC 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1.Python 字符串字符串可以看做是由单个文本字符构成的列表,每个字母构成一个列表元素,可以用下标取值,切片,用于for循环,用len()函数name = 'Zophoie'name[2]name[-3]name[0:3]'Zo'in name'ZO'in namelen(nam... 阅读全文
posted @ 2017-07-21 16:14 CodenameNC 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1.问题描述影像的背景前景分离. 输⼊为影像监控的1000 帧 (如下⽅图中左边所⽰), 要求输出是背景和前景 (如下⽅图中右边所⽰). 2.背景知识观察待处理的监控影像,可以发现,前景主要是来来往往的行人,背景始终是摄像头对准的固定区域,可以认为是始终不变的,所以进行影像背景前景... 阅读全文
posted @ 2017-06-18 13:12 CodenameNC 阅读(1678) 评论(0) 推荐(0) 编辑
摘要: Tensorflow 快速上手系统版本 : Ubuntu 16.04LTS Python版本 : 3.6.1 Tensorflow 版本 : 1.0.1 本文依据教程 TensorFlow Tutorial: 10 minutes Practical TensorFlow less... 阅读全文
posted @ 2017-06-06 18:00 CodenameNC 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 问题:开机后,搜狗输入法无法输入中文,输入法可以选择,但是不显示备选词条 系统版本: Ubuntu16.04LTS fcitx version : 4.2.9.1 Sogou Input version:2.1.0.0082解决方案cd ~/.configls打开 con... 阅读全文
posted @ 2017-06-06 12:41 CodenameNC 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Introduction1.What is Machine Learning?Two definitions of Machine Learning are offered. Arthur Samuel described it as: “the field of study tha... 阅读全文
posted @ 2017-05-20 01:10 CodenameNC 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 系统版本:Ubuntu 16.04LTS1.提示系统更新升级,报错 /boot空间不足2.根据网络,为获得/boot 空间,选择删除多余的内核文件2.1 查询系统当前内核 输入指令 uname -a 获得结果 Linux xplanet-Aspire-E1-471G 4... 阅读全文
posted @ 2017-05-18 13:44 CodenameNC 阅读(648) 评论(0) 推荐(0) 编辑
摘要: 原文地址Count Bayesie 这篇文章是博客Count Bayesie上的文章Kullback-Leibler Divergence Explained 的学习笔记,原文对 KL散度 的概念诠释得非常清晰易懂,建议阅读KL散度( KL divergence)全称:Kul... 阅读全文
posted @ 2017-05-17 10:32 CodenameNC 阅读(3086) 评论(0) 推荐(0) 编辑
摘要: Introduction:A Non-Rigorous Review of Deep Learning 原文地址 本篇文章为 MIT 课程 Mathematical Aspects of Deep Learning 的lecture 1 的学习笔记,没有进行完整的翻译,仅供参考... 阅读全文
posted @ 2017-05-17 09:57 CodenameNC 阅读(168) 评论(0) 推荐(0) 编辑
摘要: Introduction:A Non-Rigorous Review of Deep Learning 原文地址 本篇文章为 MIT 课程 Mathematical Aspects of Deep Learning 的lecture 1 的学习笔记,没有进行完整的翻译,仅供参考... 阅读全文
posted @ 2017-05-16 18:54 CodenameNC 阅读(202) 评论(0) 推荐(0) 编辑