上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 概念:https://www.liaoxuefeng.com/wiki/1016959663602400/1017629247922688 示例:https://blog.csdn.net/will130/article/details/50599577 1、多线程分别读取写入多个文件 #! /us 阅读全文
posted @ 2021-06-24 16:34 chease 阅读(38) 评论(0) 推荐(0)
摘要: 1、普通文件读取 1.1、一次读取文件的所有内容 #第一种:readlines,将文件所用内容以行为区分读到一个列表中 ,列表中的每一个元素是一行 with open('filepath','r') as f: lines=f.readlines() #一次读取全部内容 for line in li 阅读全文
posted @ 2021-06-24 16:23 chease 阅读(72) 评论(0) 推荐(0)
摘要: 1、TensorFlow 各版本的官方文档 https://www.tensorflow.org/versions 2、Tensorflow2.x的主要改变: https://ithelp.ithome.com.tw/articles/10217648 3、从tf 1.x迁移到2.x的工具: htt 阅读全文
posted @ 2021-06-22 19:05 chease 阅读(497) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/8b5536f1ea35 https://www.cnblogs.com/freely/p/8022923.html 一、安装 virtualenv,两个注意点: a)要在管理员权限下安装(sudo), b)不要安装在cond环境,在linux、m 阅读全文
posted @ 2021-05-28 15:44 chease 阅读(180) 评论(0) 推荐(0)
摘要: 1、Java 安装 安装教程:https://segmentfault.com/a/1190000038985819 jdk 下载:https://github.com/KingFalse/ojdk VIM编辑文件权限问题:https://blog.csdn.net/u012569217/artic 阅读全文
posted @ 2021-05-20 19:33 chease 阅读(58) 评论(0) 推荐(0)
摘要: 参考: https://www.jianshu.com/p/191d1e21f7ed https://blog.csdn.net/heimu24/article/details/81189700 阅读全文
posted @ 2021-04-06 11:55 chease 阅读(32) 评论(0) 推荐(0)
摘要: 转载 https://mp.weixin.qq.com/s/5lhawfLfFQVI2LIcRixtvA https://www.jianshu.com/p/1490c4635223 http://www.woshipm.com/it/981307.html https://www.zhihu.co 阅读全文
posted @ 2021-03-30 16:19 chease 阅读(1262) 评论(0) 推荐(1)
摘要: 1、代码联想功能 点击Eclipse,使其成为第一响应者,preferences->Java->Editor->Content Assist 再右下角Auto activation triggers for Java里面改为 .abcdefghijklmnopqrstuvwxyzABCDEFGHIJ 阅读全文
posted @ 2021-03-17 20:18 chease 阅读(191) 评论(0) 推荐(0)
摘要: 转自: https://www.cnblogs.com/liuq/p/9330134.html 一、点乘与矩阵乘定义 1)点乘(即“ * ”) 各个矩阵对应元素做乘法 若 w 为 m1 的矩阵,x 为 mn 的矩阵,那么通过点乘结果就会得到一个 m*n 的矩阵。 若 w 为 mn 的矩阵,x 为 m 阅读全文
posted @ 2021-01-07 21:11 chease 阅读(375) 评论(0) 推荐(0)
摘要: 参考:https://my.oschina.net/u/876354/blog/1940819 https://zhuanlan.zhihu.com/p/33560183 https://www.jianshu.com/p/cf235861311b https://blog.csdn.net/rty 阅读全文
posted @ 2021-01-07 12:55 chease 阅读(307) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页