Skip to content

tensorflow has no attribute 'mul' #1

Description

@sid-devic

tf.mul is now deprecated, and needs to be replaced with tf.multiply.
Use tf.initializers.variance_scaling instead with distribution=uniform to get equivalent behavior. Traceback (most recent call last): File "icnn.back.py", line 421, in <module> main() File "icnn.back.py", line 104, in main model = Model(inputSz, outputSz, sess, args.nGdIter) File "icnn.back.py", line 131, in __init__ E0_ = self.f(self.x_, self.y0_) File "icnn.back.py", line 330, in f z_yu = conv(tf.mul(y_red, yu_u), nFilter, kSz, strides=strides, AttributeError: module 'tensorflow' has no attribute 'mul'

Edit: Here is a list of deprecated functions and their updated variants (for tf >= 1.0 users):

  • tf.merger_all_summaries => tf.summary.merge_all
  • tf.histogram_summary => tf.summary.histogram
  • tf.scalar_summary => tf.summary.scalar
  • tf.mul => tf.multiply
  • tf.train.SummaryWriter => tf.summary.FileWriter

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions