Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. from __future__ import print_function
  2.  
  3. import math
  4. import numpy as np
  5. import pandas as pd
  6. import tensorflow as tf
  7.  
  8. from IPython import display
  9. from matplotlib import cm
  10. from matplotlib import gridspec
  11. from matplotlib import pyplot as plt
  12. from sklearn import metrics
  13. from tensorflow.python.data import Dataset
  14.  
  15. tf.logging.set_verbosity(tf.logging.ERROR)
  16. pd.options.display.max_rows = 10
  17. pd.options.display.float_format = '{:.1f}'.format
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement