Coder Social home page Coder Social logo

How to use images as input about fold HOT 4 CLOSED

tensorflow avatar tensorflow commented on May 9, 2024
How to use images as input

from fold.

Comments (4)

delesley avatar delesley commented on May 9, 2024

from fold.

fabioasdias avatar fabioasdias commented on May 9, 2024

Indeed that makes it better, thanks. However:

def _kernel(name,shape):
    var = tf.get_variable(name, shape, initializer=tf.truncated_normal_initializer(stddev=5e-2, dtype=tf.float32), dtype=tf.float32)
    return(var)

(...)

    inT = (td.Map(td.Tensor((24,10,1)) >>
                  td.Function(lambda x: tf.nn.conv2d(x,
                                                     filter=_kernel('weights',[3,3,1,32]),
                                                     strides=[1,1,1,1],
                                                     padding="SAME")) >>
                  td.Function(lambda x: tf.reshape(x,[-1,24*32*10]))))

gets me:

ValueError: Variable weights already exists, disallowed. Did you mean to set reuse=True in VarScope?

And my attempts with with tf.variable_scope('conv1') as scope: weren't any better, I'm guessing td uses scopes internally...

EDIT: I also tried to use td.ScopedLayer (similar to the example with rnn) but conv2d doesn't accept scope. I'm guessing there is some trick to glue all this together, but I'm not finding it.

from fold.

fabioasdias avatar fabioasdias commented on May 9, 2024

I managed to do it by wrapping the convolution stuff into a ScopedLayer:

def convLayer(inX,scope):
    with tf.variable_scope(scope) as sc:
        conv = tf.nn.conv2d(tf.reshape(inX,[-1,24,10,1]),
                            filter=_newVar('weights',[3,3,1,64]),
                            strides=[1, 1, 1, 1],
                            padding='VALID')
        biases = _newVar('biases', [64])
        pre_activation = tf.nn.bias_add(conv, biases)
        conv = tf.nn.relu(pre_activation, name=sc.name)
    return(conv)        
def train(batch_size=100):
    encod = (td.Map(td.Tensor((24,wav.shape[2])) >>
                    td.ScopedLayer(convLayer) >>
                    td.Function(lambda x: tf.reshape(x,[-1,64*(10-2)]))) >>
             td.Fold(td.Concat() >>
                     td.Function(td.FC(128)), td.FromTensor(tf.zeros(128))))
    model = ( encod  >>  td.Function(td.FC(1)))

(...)

At least the code is running, I'm not entirely sure that it will do what I want :)

from fold.

delesley avatar delesley commented on May 9, 2024

from fold.

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.