intro_dgm icon indicating copy to clipboard operation
intro_dgm copied to clipboard

"Deep Generative Modeling": Introductory Examples

Results 4 intro_dgm issues
Sort by recently updated
recently updated
newest added

In the ddgm example shouldn't the line: ```self.p_dnns = p_dnns``` be: ```self.p_dnns = nn.ModuleList( p_dnns)``` My understanding is that by not placing them in a ```ModuleList``` the ```p_dnns``` networks are...

I guess, D has forgotten in the equation.

Hi, it seems there is a copy-paste typo in fm_example (not sure if eval/train are needed there at all): self.vnet.eval() # set the vector field net to train again

Hi everyone, thank you for the fantastic work. I have a question regarding the sampling process. Since flow matching aims to learn the vector field of an ODE, the sampling...