球球offerrrrrr
球球offerrrrrr
全部文章
未归档
LeetCode(Python3)(1)
Numpy(3)
Ubuntu问题(1)
代码/源码(3)
剑指offer(2)
剑指offer(Python3)(3)
莫烦Matplotlib(1)
归档
标签
去牛客网
登录
/
注册
球球offerrrrrr的博客
全部文章
/ 未归档
(共55篇)
解压缩gz.00 gz.01
例如:a.tar.gz.00 a.tar.gz.01 a.tar.gz.02 终端下 cat a.tar.gz*|tar -zx
2018-09-29
0
506
Linux删除文件每一行的首尾空格等操作——sed简明教程
cat tmp.txt 123456789 123456789 123456789 # 删除每行第一个字符 sed 's/.//' tmp.txt 23456789 23456789 23456789 # 删除每行前两个字符,并保存到tmp2.txt sed 's/..//' tmp.txt...
2018-09-21
0
1181
Cannot uninstall 'httplib2'. It is a distutils installed project and thus we cannot accurately deter
Cannot uninstall ‘httplib2’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to ...
2018-09-04
0
739
numpy.random.RandomState()用法
个人笔记使用,转自@william_hehe , 侵删,看了几篇感觉这个最简单明了易理解。 RandomState():随机数种子 功能:随机产生所需数据。 import numpy for i in [1,2,3,4]: # 当参数为None时,生成的数据为随机数据。 a=nump...
2018-07-30
0
575
Tensorflow中的 张量 解释
个人记录翻看用,侵删 https://blog.csdn.net/pandamax/article/details/63684633
2018-07-20
0
407
莫烦PYTHON | Tensorflow教程——高阶内容(第五章)
(未完) 5.1 Classification 分类学习 Classification 分类问题,定性输出是分类,或者说是离散变量预测。 Regression 回归问题,定量输出是回归,或者说是连续变量预测。 """ Please note, this code...
2018-07-20
0
648
TensorBoard attempted to bind to port 6006, but it was already in use 解决方法
ERROR:tensorflow:TensorBoard attempted to bind to port 6006, but it was already in use 解决方法: #终端下 lsof -i:6006 #查看PID kill -9 PID号码 再次运行,完美解决
2018-07-19
0
571
莫烦PYTHON | Tensorflow教程——可视化好助手Tensorboard(第四章)
4.1 Tensorboard 可视化好帮手 1 Event / Scalar: 展示训练过程中的统计数据(最值,均值等)变化情况 Image: 展示训练过程中记录的图像 Audio: 展示训练过程中记录的音频 Histogram: 展示训练过程中记录的数据的分布图 Graphs: 展示神...
2018-07-19
0
573
吴恩达深度学习 | 序列模型(第一周 循环序列模型)
(未完)
2018-07-11
0
339
莫烦PYTHON | Matplotlib 教程
(未完) 第一章 Matplotlib 简介 1.1 为什么用 Matplotlib python中的画图包,方便大量数据的呈现 简称plt 1.2 Matplotlib 安装 必须先安装numpy再安装matplotlib sudo apt-get install python3-m...
2018-07-10
0
549
首页
上一页
1
2
3
4
5
6
下一页
末页