自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 "nan" error in tensorflow

Days ago, I met the error, training loss goes to be “nan” in tensorflow. Payed some effort, I found the cause of this error. In my case, It was I fed the wrong label to the network caused that error. I

2017-12-25 22:02:16 177

转载 Ubuntu 16.04 基本安装和美化

Ubuntu 16.04 安装札记 - 昕昕の爸爸 - 博客园http://www.cnblogs.com/wadxy1314/p/6880264.htmlUbuntu 16.04 安装札记写在前面的话:第一次写,有点紧张,不知道怎么写,就胡乱写了,主要是写给自己看的,感觉这里大神遍地都是,大牛更是数不胜数,我就一小白,记下来怕以后忘了,言归正传,我初步打算

2017-12-19 20:52:52 976

转载 macOS terminal setup to boost your productivity

macOS terminal setup to boost your productivity - AlternativeTo.nethttps://alternativeto.net/list/718/macos-terminal-setup-to-boost-your-productivitymacOS terminal setup to boost your producti

2017-12-16 14:32:52 333

原创 list of questions

搜索卷积神经网络 可视化

2017-12-11 18:55:40 245

原创 Linux list

VPS/服务器优化网络、加速方法总结与参考 – 初行博客 - 回归初心,记录生活点滴 https://www.zrj96.com/post-272.html 从服务器下载大文件的最好方法是? - V2EX https://www.v2ex.com/t/223183

2017-12-11 18:54:58 237

转载 计算机会议排名等级

计算机会议排名等级 - Alexander - 博客园https://www.cnblogs.com/bnuvincent/p/6809353.htmlhttp://blog.sina.com.cn/s/blog_9c411c310102vs2g.html附件是计算机领域的学术会议等级排名情况,分为A+, A, B, C, L 共5个档次。其中A+属于顶级会议,基本是这个领域全世界

2017-12-11 18:54:00 2581

原创 Scholar List

期刊查询最新SCI影响因子查询及期刊投稿分析系统(2016-2017年) - LetPub http://www.letpub.com.cn/index.php?page=journalapp&view=searchccf推荐会议列表_百度搜索 https://www.baidu.com/s?wd=ccf%E6%8E%A8%E8%8D%90%E4%BC%9A%E8%AE%AE%E5%8

2017-12-11 18:51:52 303

原创 Tool List

For windowsone commander: file manager like finder in macOS. Q-dir: file manager with multi sub-windows. gitKraken: git GUI for windows, Linxu and macOS.

2017-12-11 18:48:40 480

原创 Simple Html Examples With Divs [html learning]

simple html examples with divs http://blog.csdn.net/u013816144/article/details/49962443systematic learning html http://www.divcss5.com/html/h376.shtmlreference[youdaodic] 对计算系统和计算的系统学习。 The

2017-12-06 23:23:29 180

转载 Python将汉字数字转换成阿拉伯数字的方法

refer from:http://www.iplaypy.com/code/base/b2600.htmlPython将汉字数字转换成阿拉伯数字的方法用Python语言来为不同数字之间做转换之前就有介绍过,今天分享的是用Python将汉字数字转换成阿拉伯数字的方法。汉字数字就是我们的大写数字:零、壹、贰、叁、肆、伍、陆、柒、捌、玖、拾,这种只有在会计人员才会常用的数字。

2017-12-06 23:19:08 12238 2

原创 Python Save Data To File

Methods to save data save data load data np.save() np.load() np.savetxt() np.loadtxt() np.savez() np.load() aNumpyArray.tofile() np.fromfile() import pickle

2017-12-06 23:17:28 5983

转载 CentOS6和CentOS7 一键更换内核,一键安装锐速

CentOS6和CentOS7一键更换内核,一键安装锐速[lotServer]–方舟博客https://www.zhangfangzhou.cn/lotserver.htmlI have applied this on my aliyun ECS of centos 7.2.CentOS6和CentOS7一键更换内核,一键安装锐速[lotServer][se

2017-11-28 20:40:04 9566

转载 程序猿必定会爱上的十款软件

程序猿必定会爱上的十款软件https://news.html5.qq.com/share/2325592639145268518?ch=060000&docId=2325592639145268518&url=http%3A%2F%2Fmp.weixin.qq.com%2Fs%3F__biz%3DMzAxNjM3NzM5Mg%3D%3D%26mid%3D2453282901%26idx%3D1

2017-11-24 09:28:46 477

转载 Argparse简易教程

译者:likebeta本教程是对于Python标准库中推荐使用的命令行解析模块argparse的简单介绍。PS:还有其他两个模块实现这一功能,getopt(等同于C语言中的getopt())和弃用的optparse。因为argparse是基于optparse,所以用法很类似。概念让我们先用ls来展示这篇教程将要介绍的相关特性:$ lscpython

2017-11-21 11:20:16 241

原创 Basic Tensorflow example

import tensorflow as tf a = tf.constant(20) b = tf.constant(10) result1 = tf.cond(a > b, lambda: a, lambda: b) result2 = tf.cond(a < b, lambda: a, lambda: b) # Initialize all the variable

2017-11-21 11:19:52 212

转载 python 命令行参数解析 argparse简单分析

from: python 命令行参数解析 argparse简单分析 - CSDN博客 http://blog.csdn.net/it_way/article/details/44815141在python 2.7 后,不推荐使用 optparse, 而推荐使用 argparse.其它的不多说,简单的分析下我遇到的问题:我是想用 argparse 来解析不定长的命令行参数

2017-11-21 11:13:55 284

转载 数据标准化/归一化normalization

数据标准化/归一化normalization - 皮皮blog - CSDN博客  http://blog.csdn.net/pipisorry/article/details/52247379http://blog.csdn.net/pipisorry/article/details/52247379这里主要讲连续型特征归一化的常用方法。离散参考[数据预处理:独热编码(One-H

2017-11-21 11:13:36 4987

转载 各种优化方法总结比较(sgd/momentum/Nesterov/adagrad/adadelta)

from: 各种优化方法总结比较(sgd/momentum/Nesterov/adagrad/adadelta) - CSDN博客http://blog.csdn.net/luo123n/article/details/48239963前言这里讨论的优化问题指的是,给定目标函数f(x),我们需要找到一组参数x,使得f(x)的值最小。本文以下内容假设读者已经了

2017-11-21 11:13:19 716

转载 python中调用 imread 报错: ImportError: cannot import name imread

python中调用 imread 报错: ImportError: cannot import name imread - xiao_lxl的专栏 - CSDN博客http://blog.csdn.net/xiao_lxl/article/details/52411918现象:from scipy.misc import imread,imresize

2017-11-21 11:13:05 1593

转载 TensorFlow和Caffe、MXNet、Keras等其他深度学习框架的对比

TensorFlow和Caffe、MXNet、Keras等其他深度学习框架的对比 | 雷锋网https://www.leiphone.com/news/201702/T5e31Y2ZpeG1ZtaN.htmlTensorFlow和Caffe、MXNet、Keras等其他深度学习框架的对比本文作者:AI研习社2017-02-23 18:19

2017-11-21 11:12:41 836

转载 范数与距离的关系以及在机器学习中的应用

范数与距离的关系以及在机器学习中的应用 - CSDN博客http://blog.csdn.net/kingzone_2008/article/details/150739871 范数向量的范数可以简单形象的理解为向量的长度,或者向量到零点的距离,或者相应的两个点之间的距离。向量的范数定义:向量的范数是一个函数||x||,满足非负性||x|| &gt;= 0,齐次性||cx|| = |c| ||x|...

2017-11-21 11:12:26 289

原创 Purpose Of Multiple Graphs In Tensorflow

why tensorflow designed to programming with multiple graphs ID simple detailed 1 give user more control with over naming A tf.Graph defines the namespace for tf.Operation objects: e

2017-11-21 11:11:41 253

原创 How To Add Bookmark (mark) In Pycharm

When reading or editing a long code, you may want to add some bookmarks to the current file. For example you are amending

2017-11-20 14:30:56 554

原创 convolution in tensorflow (tf.nn.conv)

Understanding convolution in tensorflowPoints should be noticed The convolution ops sweep a 2-D filter over a batch of images, applying the filter to each window of each image of the appropriate

2017-11-20 14:23:36 620

转载 pycharm的一些快捷键

[转]pycharm的一些快捷键 - seven_clear - 博客园http://www.cnblogs.com/littleseven/p/5599019.html

2017-11-20 14:22:49 244

转载 Sharing Your Computer's Internet Connection in Windows 10

Sharing Your Computer's Internet Connection | Windows 10 Tips and Tricks: Connecting to Networks and the Internet | InformIThttp://www.informit.com/articles/article.aspx?p=2455390&seqNum=6

2017-11-20 14:21:51 264

转载 How to choose cross-entropy loss in tensorflow?

machine learning - How to choose cross-entropy loss in tensorflow? - Stack Overflowhttps://stackoverflow.com/questions/47034888/how-to-choose-cross-entropy-loss-in-tensorflow0down votefavorite ...

2017-11-20 14:20:59 1742

转载 GIT BASH IN INTELLIJ IDEA 13 ON WINDOWS One of the top features of the recent release of IntelliJ ID

GIT BASH IN INTELLIJ IDEA 13 ON WINDOWSOne of the top features of the recent release of IntelliJ IDEA 13 is definitively a built-in command-line interface. For me, this is really great feature

2017-11-20 14:20:36 196

原创 Multithreading in Python

The package for multithreadingThe package threading is for multithreaded programming in python. To get it ready to use, one should import it. As:import threadingGet your hand dirtyimport t

2017-11-20 14:19:48 304

原创 Python File Processing

Get your hand dirtytitle = 'aaa'with open('%s.txt' % (title,),'a') as f: f.write('---------**-----------\n') for i in range(10): f.write(str(i) + '\n') f.write('%%%%%%%%%%

2017-11-20 14:19:16 614

原创 Python Logging Module

Main stufflogger, handler, formatter.How it works ref: How Python logging module works | Shut Up and Ship http://zqpythonic.qiniucdn.com/data/20161124153540/index.htmlSimple example

2017-11-20 14:18:29 297

转载 Win10下安装Tensorflow(GPU)+CUDA8.0+cudnn6

Win10下安装Tensorflow(GPU)+CUDA8.0+cudnn6 - TongXXhaha的博客 - CSDN博客http://blog.csdn.net/tongxxhaha/article/details/75752047之前在win10下一直配置不好TensorFlow(GPU)版本,苦苦挣扎几天后无奈转向在ubantu 14.04下安装,

2017-11-20 14:06:23 427

原创 国内镜像

conda清华大学开源软件镜像站 | Tsinghua Open Source Mirror https://mirror.tuna.tsinghua.edu.cn/help/anaconda/pip清华大学开源软件镜像站 | Tsinghua Open Source Mirror https://mirror.tuna.tsinghua.edu.cn/help/pypi/

2017-11-14 20:41:05 271

原创 xfce in ubuntu

A new ubuntuChange source to use tsinghua sourcereference page: https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/# backup comes first.sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak#

2017-11-14 14:47:08 325

原创 Linux List

remote controlssh at ubuntuubuntu开启SSH服务远程登录 - CSDN博客 http://blog.csdn.net/jackghq/article/details/54974141tigervncit’s easy to configure.theme ubuntuUbuntu Customization - yusisc的博

2017-11-14 14:46:13 223

转载 Ubuntu中PPA源是什么

Ubuntu中PPA源是什么 - EasonJim - 博客园 https://www.cnblogs.com/EasonJim/p/7119331.htmlUbuntu中PPA源是什么以下内容转自https://imcn.me/ppa:PPA是Personal Package Archives首字母简写。翻译为中文意思是:个人软件包文档只有Ubuntu用户

2017-11-14 12:57:50 801

原创 Ubuntu Customization

Themetool 1unity-tweak-toolLibra themedownload libra theme. It could be downloaded from https://pan.baidu.com/s/1miufmoK .extract the folder Libra/.copy the foloer Libra/ to the path /u

2017-11-12 14:43:31 387

转载 ubuntu multiple Simultaneous independent remote (desktop like ) connections

vnc - ubuntu 14.10 multiple Simultaneous independent remote (desktop like ) connections - Ask Ubuntuhttps://askubuntu.com/questions/581979/ubuntu-14-10-multiple-simultaneous-independent-remote-deskt

2017-11-12 08:19:47 563

转载 VNC实现Windows远程访问Ubuntu 16.04(无需安装第三方桌面)

VNC实现Windows远程访问Ubuntu 16.04(无需安装第三方桌面) - 法号阿兴 - 博客园https://www.cnblogs.com/xuliangxing/p/7642650.htmlVNC实现Windows远程访问Ubuntu 16.04(无需安装第三方桌面)  本文主要是讲解如果理由VNC实现Windows远程访问Ubuntu 16.04

2017-11-12 08:18:44 1162

原创 Wake Your Computer Up From Local Network

(10)使用Magic Packet进行网络唤醒(WOL)偶是小谢新浪博客 http://blog.sina.com.cn/s/blog_5584fa8e01018psy.htmlWOL - Magic Packet Sender - Free Windows Software http://magicpacket.free.fr/thankyou15.htm

2017-11-09 14:14:14 177

空空如也

空空如也

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

TA关注的人

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