
莫烦视频学习
CliuGeek
make the world to be a better place
展开
-
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
警告Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2解决办法原创 2017-12-18 20:09:35 · 29796 阅读 · 15 评论 -
tensorflow学习心得:numpy中newaxis的使用
小知识点,当作学习笔记记录一下。 newaxis的功能其实很简单,主要就是加入一个新的维度,大家可以参照我下面给出的例子,自行理解! 示例:import numpy as npx_data = np.linspace(-1,1,3)y_data = np.linspace(-1,1,3)[:,np.newaxis]z_data = np.lin原创 2018-01-15 17:46:31 · 1366 阅读 · 0 评论