上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 2020/10/31 参考:https://blog.csdn.net/mzpmzk/article/details/78636127 1. 两大步骤:定义图define the graph, 进行计算(会话)begin the session 2. 高级封装接口(keras--tf2.x ,tf. 阅读全文
posted @ 2020-11-01 19:52 qiezi_online 阅读(89) 评论(0) 推荐(0)
摘要: variable_names = [v.name for v in tf.all_variables()] values = sess.run(variable_names) for k,v in zip(variable_names, values): print("Variable: ", k) 阅读全文
posted @ 2020-10-31 10:15 qiezi_online 阅读(839) 评论(0) 推荐(0)
摘要: 结合tensorflowtf 2.x , tensorflow 1.x, pytorch来深入理解深度学习架构,用博客来记录这一系列,日后也方便回顾,博客中也会加入个人理解和感悟 参考的博客列表如下: https://blog.csdn.net/mzpmzk/category_7310238.htm 阅读全文
posted @ 2020-10-31 10:03 qiezi_online 阅读(63) 评论(0) 推荐(0)
摘要: 希望实现图片上的功能 import tensorflow as tfa = tf.range(10,dtype=float)b = aa = tf.reshape(a,[-1,1])a = tf.tile(a,[1,3]) sess = tf.Session()print(sess.run(b))p 阅读全文
posted @ 2020-10-28 23:17 qiezi_online 阅读(1106) 评论(0) 推荐(0)
摘要: SASRec——2018,ICDM,论文《Self-Attentive Sequential Recommendation》 源代码链接:https://github.com/kang205/SASRec 实验记录以及截图:(twnsorflow1.12,python2.7,gpu: 2080ti) 阅读全文
posted @ 2020-10-28 11:15 qiezi_online 阅读(841) 评论(0) 推荐(0)
摘要: 一、视频推荐(都比较偏向深度学习方向) 1.深度学习,新手入门推荐 吴恩达的deeplearning,自行百度,可在网易云课堂找到免费视频 2.台湾李宏毅老师,b站可搜索,最新的机器学习2020,链接:https://www.bilibili.com/video/BV1JE411g7XF?from= 阅读全文
posted @ 2020-10-27 20:44 qiezi_online 阅读(198) 评论(0) 推荐(0)
摘要: 参考: https://blog.csdn.net/C_chuxin/article/details/82690830 进入环境下比如 source activate py36 pip install ipykernel sudo python -m ipykernel install --name 阅读全文
posted @ 2020-10-24 18:36 qiezi_online 阅读(912) 评论(0) 推荐(0)
摘要: 需要一个GPU服务器,找到了免费的Google Colab 一、切换tensorflow版本: %tensorflow_version 1.x import tensorflow as tf tf.__version__ 1.15.2(需要重启kernel) 二、命令行的使用 每次加上! 如: !p 阅读全文
posted @ 2020-10-21 20:04 qiezi_online 阅读(82) 评论(0) 推荐(0)
摘要: 1. read_csv方法,关注usecols,dtype train = pd.read_csv(dataBefore, sep=',', header=None, usecols=[0,1,2], dtype={0:np.int32, 1:str, 2:np.int64}) train.colu 阅读全文
posted @ 2020-10-11 19:03 qiezi_online 阅读(85) 评论(0) 推荐(0)
摘要: 中长线: 1. 成都——稻城亚丁 , 7天 路线地图:http://dcyd.aiketour.com/raiders/show_6.html http://daocheng.xxcz.cn/raiders/show_474.html https://image.baidu.com/search/d 阅读全文
posted @ 2020-10-02 10:58 qiezi_online 阅读(253) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页