1234567reduce_sum 是 tensor 内部求和的工具.其参数中: input_tensor 是要求和的 tensor axis 是要求和的 rank,如果为 none,则表示所有 rank 都要仇和 keep_dims 求和后是否要降维 这个操作的名称,可能在 graph 中 用 已被淘汰的,被参数 axis 替代 x = tf.constant([[1, 1, 1], [1, 1, 1]])tf.reduce_sum(x, 0) # 对 tensor 的 0 级进行求和,[1,…