BarclayII / audiogan

GAN for (raw) audio generation
2 stars 1 forks source link

MultiplyMixer Link? #2

Open leedtan opened 7 years ago

leedtan commented 7 years ago

I followed the link to your reference and I don't know what its referring to/why this exists:

class MultiplyMixer(Mixer):

Reference:

# https://github.com/shaform/DeepNetworks/blob/master/deep_networks/models/iwacgan.py
def call(self, z, c):
    return z * c

And dont see the word multiply or mixer in the referenced file.

Can you explain the reference?

BarclayII commented 7 years ago

Essentially it multiplies the class embedding and the noise element-wise. Hence the name "MultiplyMixer".