Coder Social home page Coder Social logo

Comments (2)

eiderman avatar eiderman commented on September 26, 2024

Are you in the same scope where you created the variable? variable_scopes are nested.

The following code properly captures the weights:

with tf.Graph().as_default() as g:
  x = pt.wrap(np.zeros((4, 10, 10, 4), dtype=np.float32)).conv2d(9, 64, stride=1, weights=tf.truncated_normal_initializer(stddev=0.001),edges='SAME',name='conv1')

  with tf.variable_scope('conv1') as scope:
      tf.get_variable_scope().reuse_variables()
      weights = tf.get_variable('weights')
      print weights

To see the full variable names, you can run this: print [v.name for v in tf.all_variables()].

You can also use: x.layer_parameters['weights'] if you have a handle on the layer to get the weights used in the graph.

PS I personally find the style of with tf.variable_scope('conv1', reuse=True) to be a little easier to read.

from prettytensor.

VigneshSrinivasan10 avatar VigneshSrinivasan10 commented on September 26, 2024

print [v.name for v in tf.all_variables()] got me all the variable names and then I was able to extract the weights I wanted.
Thank you!

from prettytensor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.