Created
March 30, 2020 18:54
-
-
Save piEsposito/b40d23da6a5119c6758dbae91515707a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.nn as nn | |
import torch.nn.functional as F | |
import torch.optim as optim | |
import numpy as np | |
from blitz.modules import BayesianLinear | |
from blitz.utils import variational_estimator | |
from sklearn.datasets import load_boston | |
from sklearn.preprocessing import StandardScaler | |
from sklearn.model_selection import train_test_split |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment