Giter Club home page Giter Club logo

Comments (5)

ematvey avatar ematvey commented on August 23, 2024

Hi! Traceback you've shown indicates that you're running ops on GPU. I guess you've changed device manually (unless TF have some environment override for default device I'm not aware of). Could you post the code you modified?

Also, do you by any change run optimizer like tf.train.AdamOptimizer().minimize(loss, colocate_gradients_with_ops=True)?

from tensorflow-seq2seq-tutorials.

gangeshwark avatar gangeshwark commented on August 23, 2024

Hi,
I did not modify your code at all. Just a dry run gave me that error. So I don't think it was due to any changes in the code.
Also, no I didn't run the optimizer like the one you mentioned.

from tensorflow-seq2seq-tutorials.

ematvey avatar ematvey commented on August 23, 2024

This is extremely strange. Trace clearly shows you are running the tutorial on GPU, while nothing in it changes the device (and it doesn't change it for me).

Please try running with soft device placement: sess = tf.InteractiveSession(config=tf.ConfigProto(allow_soft_placement=True))

from tensorflow-seq2seq-tutorials.

ematvey avatar ematvey commented on August 23, 2024

I assume the issue was resolved. Closing it now.

from tensorflow-seq2seq-tutorials.

ravikg avatar ravikg commented on August 23, 2024

I had similar issue and after looking into the issue it seems the issue is with embedding. It seems there is no GPU implementation of embedding. One can declare the embedding variable to use cpu then it works fine, e.g.:

with tf.device("/cpu:0"):
    embeddings = tf.Variable(tf.random_uniform([vocab_size, input_embedding_size], -1.0, 1.0), dtype=tf.float32)

Ref: tensorflow/tensorflow#5117

from tensorflow-seq2seq-tutorials.

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.