Afshin Rahimi
Afshin Rahimi
Instead of this line: `log_liklihoods.append(output[:, target])` have this line: `log_liklihoods.append(torch.gather(output, dim=1, index=target.unsqueeze(-1)))` Why? Assume our output is 100x4 which means batch size is 100 and we have 4 classes. Target...
Hi, I was just using the code to do a regularized multinomial logistic regression where each instance's label is a probability distribution over all labels and the design matrix X...
Hi, I'm using 'pip install uncertainty' and getting error in installing dependencies such as numpy (due to old versions maybe). Is it possible to update the repo based on newer...