Guest User

Untitled

a guest
Dec 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. import pandas as pd
  2. import numpy as np
  3. import pickle
  4. import matplotlib.pyplot as plt
  5. from scipy import stats
  6. import tensorflow as tf
  7. import seaborn as sns
  8. from pylab import rcParams
  9. from sklearn.model_selection import train_test_split
  10. from keras.models import Model, load_model
  11. from keras.layers import Input, Dense
  12. from keras.callbacks import ModelCheckpoint, TensorBoard
  13. from keras import regularizers
  14.  
  15. %matplotlib inline
  16.  
  17. RANDOM_SEED = 50 #help to randomly select the data points
  18.  
  19. import warnings
  20. warnings.filterwarnings('ignore')
Add Comment
Please, Sign In to add comment