Created
April 14, 2020 20:04
-
-
Save piEsposito/977ea319561033f87bf2aa21bd3d3afa 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 pandas as pd | |
import numpy as np | |
import torch | |
import torch.nn as nn | |
import torch.optim as optim | |
import torch.nn.functional as F | |
from blitz.modules import BayesianLSTM | |
from blitz.utils import variational_estimator | |
from sklearn.model_selection import train_test_split | |
from sklearn.preprocessing import StandardScaler | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
from collections import deque |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment