Code Monkey home page Code Monkey logo

Comments (4)

joonson avatar joonson commented on July 16, 2024

Hi,

The augmentation part is here:

## additive noise profile
noisecat = random.choice(self.noisetypes)
noisefile = random.choice(self.noiselist[noisecat].copy())
snr = [random.uniform(self.noisesnr[noisecat][0],self.noisesnr[noisecat][1])]
if self.augment_type == 0 or (ii == 0 and not self.augment_anchor):
augment_profiles.append({'rir_filt':None, 'rir_gain':None, 'add_noise': None, 'add_snr': None})
elif self.augment_type == 1:
augment_profiles.append({'rir_filt':None, 'rir_gain':None, 'add_noise': noisefile, 'add_snr': snr})
elif self.augment_type == 2:
## RIR with 25% chance, otherwise additive noise augmentation
if random.random() > 0.75:
augment_profiles.append({'rir_filt':rir_filts, 'rir_gain':rir_gains, 'add_noise': None, 'add_snr': None})
else:
augment_profiles.append({'rir_filt':None, 'rir_gain':None, 'add_noise': noisefile, 'add_snr': snr})
else:
raise ValueError('Invalid augment profile %d'%(self.augment_type))

The AAT part will be released after the VoxSRC, in October.

from voxceleb_unsupervised.

msh9184 avatar msh9184 commented on July 16, 2024

Thanks a lot.
But, I think augment_type "1" is only Noise mode, and augment_type "2" seems to be RIR or Noise (R|N) mode with 25% RIR.
If my guess is correct, I would ask if there is RIR and Noise(R+N) mode.

그림1

from voxceleb_unsupervised.

joonson avatar joonson commented on July 16, 2024

Noise and RIR (option 3) is not included at the moment, but it will be added after the challenge.

from voxceleb_unsupervised.

msh9184 avatar msh9184 commented on July 16, 2024

Thank you.

from voxceleb_unsupervised.

Related Issues (11)

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.