自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 win-sshfs的使用

https://www.jianshu.com/p/d79901794e3d

2018-07-12 10:30:58 953

转载 使用双线性插值法放大图像(matlab实现)

点击打开链接

2017-07-28 11:03:23 3415

原创 tensorflow入门Day4-CNN

# -*- coding: utf-8 -*-from tensorflow.examples.tutorials.mnist import input_dataimport tensorflow as tf mnist = input_data.read_data_sets('MNIST_data/',one_hot=True)x = tf.placeholder("float",

2017-03-18 20:08:59 238

原创 tensorflow入门Day3-TensorBoard

#-*- coding: utf-8 -*-import tensorflow as tf#TB是tensorflow自带的一个强大的可视化工具tf.set_random_seed(1234)'''Step 1: Name variables and make use of scopes for organizing your graphStep 2: Place summari

2017-03-18 20:01:49 255

原创 tensorflow入门Day3-MNIST

# -*- coding: utf-8 -*-from tensorflow.examples.tutorials.mnist import input_dataimport tensorflow as tf mnist = input_data.read_data_sets('MNIST_data/',one_hot=True)W = tf.Variable(tf.zeros([78

2017-03-17 19:54:56 228

原创 tensorflow入门Day2-K-means实现详解

1、K-means实现详解# -*- coding: utf-8 -*-#上面一行声明用于中文注释识别,有中文注释必加import numpy as npimport matplotlib.pyplot as pltimport pandas as pd import seaborn as snsimport tensorflow as tf#pandas&seaborn都是基

2017-03-17 16:19:20 774

原创 tensorflow入门Day1-简单线性回归

看了某个教程写的代码:import numpy as np import matplotlib.pyplot as plt import tensorflow as tf num_puntos = 1000conjunto_puntos = []for i in xrange (num_puntos): x1 = np.random.normal(0.0,0.55) y1 =

2017-03-17 16:10:21 428

原创 2017-2-20-DL碎碎念一

至于为什么突然会有写博客的冲动,是因为在网上看到了这个人写的caffe学习记录,感觉很有意思,觉得自己也应该把我每天学的东西记录下来!        好了~开始我的博客之旅啦~~

2017-02-20 14:51:43 317

空空如也

空空如也

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

TA关注的人

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