LP_BNN
LP_BNN copied to clipboard
This repository contains an official implementation of LPBNN.
Hello, thanks for providing your code. I have a question, [LPBNN_layers line 75](https://github.com/giannifranchi/LP_BNN/blob/70f02c99539726256c577104494ac6dd43ced583/networks/LPBNN_layers.py#L75C1-L75C99) is: `embedded_mean, embedded_logvar=self.encoder_fcmean(embedded),self.encoder_fcmean(embedded)` Should this not be: `embedded_mean, embedded_logvar=self.encoder_fcmean(embedded),self.encoder_fcvar(embedded)` As it is, it appears to be enforcing...
Thanks for the great work! May I ask how did you re-implement the code for BatchEnsemble? Since the original official implementation is in Tensorflow, is there any Pytorch resources to...
Hey! I really loved reading your paper, and was interested in using your approach to assist in some segmentation tasks - do you have a timeframe on when you might...