Code Monkey home page Code Monkey logo

Comments (5)

chrisdonahue avatar chrisdonahue commented on July 17, 2024

Can you print out len(fps) to see how large it is? I'm not sure but it seems like the script is not finding all of your files.

from wavegan.

hinash88 avatar hinash88 commented on July 17, 2024

I am having same issue, Printing the len(fps), it is 860 (My total training examples)

Traceback (most recent call last): File "train_specgan.py", line 760, in <module> moments(fps, args) File "train_specgan.py", line 614, in moments _X_lmags = np.concatenate(_X_lmags, axis=0) File "<__array_function__ internals>", line 6, in concatenate ValueError: need at least one array to concatenate

from wavegan.

sanchita-ghose avatar sanchita-ghose commented on July 17, 2024

@hinash88 have you fixed the error?

from wavegan.

alexanderbarnhill avatar alexanderbarnhill commented on July 17, 2024

@hinash88 @sanchita-ghose

So I've been able to generate the moments, but the fact is this code is just not all that viable anymore unless you're running an older (1.x) version of TF. So here's what I did.

  1. Run update script on train_specgan.py

tf_upgrade_v2 --infile train_specgan.py --outfile train_specgan_v2.py

  1. This will produce some errors, as the contrib library no longer exists in tf. So for every instance of contrib in train_specgan.py you have to change it from: tf.contrib.signal to tf.signal

  2. Then because of the way tensorflow works, nothing will actually be done until the session is allowed to run, and because tensorflow switched to eager execution at some point, this session to create the moments will actually never be run, and this is the cause of the need at least one array to concatenate error. So, the simplest fix is to add the following line at the top of the file:

tf.compat.v1.disable_eager_execution()

I hope this helps. I don't know a lot about tensorflow, as I try to stick to pytorch, so I'm not sure if the changes I've made are in line with the best practices, but it seems to be working for me. If you are stuck in a 1.x version then I can't help you, I don't think. Best of luck!

from wavegan.

antonjeran12 avatar antonjeran12 commented on July 17, 2024

@alexanderbarnhill ,

I tried what you have mentioned but I am still getting the error (need at least one array to concatenate).

I am using tensorflow gpu 1.14
Cuda compilation tools, release 10.0, V10.0.130
CUDA Version: 11.0

from wavegan.

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.