tensorflow安装时遇到gcc: error trying to exec 'as': execvp: No such file or directory. 截止到2016年11月13号,源码编译tensorflow还不支持gcc5.4,我使用的是gcc5.3,使用bazel工具进行编译时遇到上面这个问题,解决方法,将/usr/bin/as放到/usr/local/bin/gcc,和gcc 5.3的版本同个目录下./usr/bin/as不知道是由那个版本的GCC装上的,还是说系统自带. 由
import tensorflow as tf import numpy as np def add_layer(inputs, in_size, out_size, n_layer, activation_function=None): # add one more layer and return the output of this layer layer_name = 'layer%s' % n_layer with tf.name_scope(layer_name): with tf.