球球offerrrrrr
球球offerrrrrr
全部文章
分类
LeetCode(Python3)(1)
Numpy(3)
Ubuntu问题(1)
代码/源码(3)
剑指offer(2)
剑指offer(Python3)(3)
未归档(55)
莫烦Matplotlib(1)
归档
标签
去牛客网
登录
/
注册
球球offerrrrrr的博客
全部文章
(共69篇)
Tensorflow不能使用GPU的解决办法
服务器在训练模型,另一边我在瞎胡乱搞不晓得咋个搞的,就不能使用GPU了。 python3.6下 from tensorflow.python.client import device_lib print(device_lib.list_local_devices()) 查询了一下确实检测不到G...
2019-02-01
0
726
No module named 'wtforms' 解决办法
记录一下,,本菜鸡查了好久 pip install wtforms pip install wtf pip install Flask-WTF #或者 easy_install Flask-WTF 完美解决(不懂Flask,只是想跑个小demo)
2019-01-31
0
1342
解压缩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
python | A for B in C的用法
一个例子 Y = [ [ int(x1+x2 < 1) ] for (x1, x2) in X ] 对X中的每一组元素(x1, x2)遍历一遍,当满足(x1+x2 < 1)时,就把这个布尔值[True]/[False]转换成int型(1或0),存放在[ ]里,作为Y的一个元素。
2018-07-30
0
911
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
首页
上一页
1
2
3
4
5
6
7
下一页
末页