摘要:
最近,将电脑主机升级到ubuntu16.04,但是需要用到 python-imaging-tk,先是报错: import PIL.ImageTk as ImageTkImportError: No module named ImageTk 参考网上的是pythonimaging-tk的包没有安装,所 阅读全文
摘要:
可以参考官网:https://github.com/tensorflow/tensorflow/tree/master/tensorflow/examples/android#android-studio 官网讲的很简单: Android Studio may be used to build th 阅读全文
摘要:
API level: API level是一个整数,它指的是我们使用的框架(Framework)的版本,也就是我们使用的sdk中的各个平台下的android.jar。 但是这个API level又和Android系统的版本有着对应关系,并且每个系统都会在内部记录它所使用的API level。 htt 阅读全文
摘要:
In file included from ./third_party/eigen3/unsupported/Eigen/CXX11/Tensor:1:external/eigen_archive/unsupported/Eigen/CXX11/Tensor:84:10: fatal error: 阅读全文
摘要:
参考官网:https://www.tensorflow.org/serving/setup 首先是安装gprc: just run the following command: Long answer- Here is my locale settings: Python2.7 curl https 阅读全文
摘要:
"""Constructor. Sets the properties `cluster_spec`, `is_chief`, `master` (if `None` in the args), `num_ps_replicas`, `task_id`, and `task_type` based 阅读全文
摘要:
tf.identity is useful when you want to explicitly transport tensor between devices (like, from GPU to a CPU). The op adds send/recv nodes to the graph 阅读全文
摘要:
使用tensorflow 的时候报错: result ,_= sess.run(ops)ValueError: too many values to unpack 其实是ops里面不止一个,返回解压成2个(result ,_) 失败!!!! 正确的是: result = sess.run(ops) 阅读全文
摘要:
参考:https://github.com/tensorflow/models/issues/1834 You need to download protoc version 3.3 (already compiled). Used protoc inside bin directory to ru 阅读全文