You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is parametrized by amp, mu, sigma. I'd like to use a 2-d parametrized classifier in mu,sigma to classify Gaus vs. Uniform and then use the decomposition on top of that.
Also, it would need to be able to deal with Gaus(x | mu, sigma) vs. Gaus(x | mu' , sigma')
Not sure if this is possible.
The text was updated successfully, but these errors were encountered:
Also, it would need to be able to deal with Gaus(x | mu, sigma) vs. Gaus(x | mu' , sigma')
Unless I am misunderstanding, in this case you need to define mu and mu' using distinct theano variables. If you use the same python object, then the parameter will be shared across distributions, and this may not be what you want to do. Similarly, you should think if you really want to share the same components objects.
It is parametrized by amp, mu, sigma. I'd like to use a 2-d parametrized classifier in mu,sigma to classify Gaus vs. Uniform and then use the decomposition on top of that.
Unfortunately, it is not yet possible to combine the decomposition with a prefit classifier. Not sure how to best do that easily, since you would need in this case to provide all pairwise classifiers. I'll think about it, but suggestions are welcome!
I'm working on example now that looks like
amp_Gaus(x | mu, sigma) + (1-amp)_Uniform(x)
It is parametrized by amp, mu, sigma. I'd like to use a 2-d parametrized classifier in mu,sigma to classify Gaus vs. Uniform and then use the decomposition on top of that.
Also, it would need to be able to deal with Gaus(x | mu, sigma) vs. Gaus(x | mu' , sigma')
Not sure if this is possible.
The text was updated successfully, but these errors were encountered: