TensorFlow
huang_yx005
这个作者很懒,什么都没留下…
展开
-
Mxnet广播机制
https://blog.csdn.net/qq_36387683/article/details/80628577 四条规则如下: All input arrays with ndim smaller than the input array of largest ndim, have 1’s prepended to their shapes. The size in each dimen...转载 2019-10-21 22:47:45 · 283 阅读 · 0 评论 -
TensorFlow的android移植
PC端模型的准备 这是一个很简单的模型,输入是一个数组matrix1,经过操作后,得到这个数组乘以2*matrix1。 给输入数据命名为input,在android端需要用这个input来为输入数据赋值给输输数据命名为output,在android端需要用这个output来为获取输出的值不能使用 tf.train.write_graph()保存模型,因为它只是保存了模型的结构,并不保存原创 2017-12-11 20:06:36 · 944 阅读 · 0 评论 -
bazel使用问题汇总
来源于bazel官方文档https://docs.bazel.build/versions/master/output_directories.html Bazel must be invoked from a directory containing a WORKSPACE file. It reports an error if it is not. We call this the原创 2017-12-22 13:50:34 · 7903 阅读 · 2 评论 -
tensorflow离线源码安装
从源码离线编译安装tensorflow,记录踩过的坑: 1.tensorflow的外部依赖 tensorflow的外部依赖很多,所依赖的外部库均在WORKSPACE文件和//tensorflow/workspace.bzl文件中给出了url地址 使用如下命令可以拉取全部的external外部依赖 bazel fetch //... 为能够离线安装tensorflow,需要建立内部局域网的原创 2017-12-22 14:43:51 · 3001 阅读 · 0 评论 -
NHWC与NCHW
http://blog.csdn.net/jningwei/article/details/78156011 区别 NHWC [batch, in_height, in_width, in_channels] NCHW [batch, in_channels, in_height, in_width] 转换 NHWC –> NCHW:转载 2018-01-11 19:05:17 · 5940 阅读 · 0 评论 -
protobuf
https://www.cnblogs.com/yinheyi/p/6080244.html https://www.cnblogs.com/lidabo/p/3911456.html 比如有个电子商务的系统(假设用C++实现),其中的模块A需要发送大量的订单信息给模块B,通讯的方式使用socket。 假设订单包括如下属性: ------------------------转载 2018-01-09 15:17:55 · 229 阅读 · 0 评论 -
tensorflow文档
tensorflow官网访问不了问题: 转载自http://blog.csdn.net/u013709270/article/details/72817521 直接访问: https://tensorflow.google.cn 相信很多搞深度学习的小伙伴最近都为访问不了 TensorFlow官网 而苦恼吧!虽然网上也给出了一些方法,但是却缺少一个很重要的步骤。接下来,我转载 2018-01-03 22:29:45 · 436 阅读 · 0 评论