Open cranmer opened 8 years ago
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.
(Maybe it would be best to move that issue to carl instead)
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.