Giter VIP home page Giter VIP logo

Comments (4)

sunsdy2018 avatar sunsdy2018 commented on September 24, 2024

To give extra report. To avoid ZeroDivisionError shown above, I modified the code in speechbrain/utils/data_utils.py as follows:

in func pad_right_to()

from:

valid_vals.append(tensor.shape[j] / target_shape[j])

to:

if target_shape[j] != 0:
valid_vals.append(tensor.shape[j] / target_shape[j])
else:
valid_vals.append(1.0)

So it looks like the following:
image

After the such a modification and given a new batchsize of 8, the training process went on well and finished one epoch as following:
image

However, before going any further, it reported an error "sentencepiece_processor.cc(954) LOG(ERROR) src/sentencepiece_processor.cc(294) [model_] Model is not initialized."

And throwed an exception as follows:
image

Back to the frame of compute_objectives(), the information is as follows:
image

from speechbrain.

sunsdy2018 avatar sunsdy2018 commented on September 24, 2024

This problem was caused by my mistake.

from speechbrain.

scj0709 avatar scj0709 commented on September 24, 2024

I am also experiencing the same problem.
How did you solve this problem?

from speechbrain.

sunsdy2018 avatar sunsdy2018 commented on September 24, 2024

Sorry to see your comment until now.

My problem is caused because my mistake that I commented the initialization codes of the pretrainer. As shown in the red box of the following figure, I commented them and got the zerodivision error. Besides, I didn't give the correct configure args for pretrainer section in train.yaml .
image

from speechbrain.

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.