Git Product home page Git Product logo

Comments (9)

vitrioil avatar vitrioil commented on May 25, 2024 1

Hi,

Thanks for pointing out the mistake. It was fixed when the repo was merged to asteroid here, somehow it was not fixed here. But I did not see any significant improvement in terms of overfitting unfortunately.

from speech-separation.

vskadandale avatar vskadandale commented on May 25, 2024 1

Thanks for the quick response @vitrioil ! It seems another similar bug is repeated here and also in the asteroid. Here, we are reshaping (N,298,2x257xself.num_person) into (N,2,298,257,self.num_person). Instead of view(N, 2, 298, 257, self.num_person), it will be more appropriate to do view(N,298,2,257,self.num_person).transpose(1,2).

from speech-separation.

vitrioil avatar vitrioil commented on May 25, 2024 1

I see... we are mixing the axis at the last layer. Thank you again for pointing this out! I will fix this.

from speech-separation.

vskadandale avatar vskadandale commented on May 25, 2024 1

I have raised a bug in asteroid as well. Another thing, this line needs to be commented out, I guess.

from speech-separation.

vskadandale avatar vskadandale commented on May 25, 2024

A possible fix:
In line #187 of models.py, replace output_layer = output_layer.view(batch_size,-1,height,1) with output_layer = output_layer.permute(0, 2, 1, 3).contiguous().view(batch_size, height, -1, 1).permute(0, 2, 1, 3)

from speech-separation.

vskadandale avatar vskadandale commented on May 25, 2024

please let know if you manage to overcome the overfitting problem with this fix. thanks!

from speech-separation.

vitrioil avatar vitrioil commented on May 25, 2024

Here input channel expected by self.conv1 is 512 so transposing the channels so that we get the correct expected channel, otherwise channels will still be 1. I don't have access to any GPU now but if I do train it and see an improvement I will let you know.

from speech-separation.

MordehayM avatar MordehayM commented on May 25, 2024

Hi,
Firsly, thanks for the code.
Is there any improvement in the overfitting problem?
@vitrioil

from speech-separation.

vitrioil avatar vitrioil commented on May 25, 2024

Hi @MordehayM,
I still haven't tried re-training, so currently the result is the same

from speech-separation.

Related Issues (7)

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.