Giter Site home page Giter Site logo

convlstm-moving-mnist's People

Contributors

huxian0402 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

convlstm-moving-mnist's Issues

RNN_convLSTM structure Error

# RNN_convLSTM  structure
def RNN_convLSTM(x ):

    #(1,19,64,64,1)     #num_filter, kernei_size
    x = tf.contrib.slim.conv2d(x, 1, 1, padding='SAME',activation_fn=tf.nn.relu)
    x = tf.contrib.slim.conv2d(x, 8, 1, padding='SAME', activation_fn=tf.nn.relu)
    x = tf.contrib.slim.conv2d(x, 16, 1, padding='SAME', activation_fn=tf.nn.relu)
    #(1,10,64,64,16)
   
                                      # [3 ,                       3]      ,                1024
    rnn_cell = BasicConvLSTMCell([64, 64], [config.conv_filter_size, config.conv_filter_size], config.hidden_size,
                                 is_train,
                                 forget_bias=1.0, activation=tf.nn.tanh)

    state_size = rnn_cell.state_size  #c(64,64,1024) ,h(64,64,1024)

我应该把tf.contrib.slim.conv2d 改成tf.contrib.slim.conv3d吗?,因为前者的输入只能是一个4维tensor,会报错的! 求解?

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.