Skip to content

Instantly share code, notes, and snippets.

@dusenberrymw
Created August 5, 2016 17:30
Show Gist options
  • Save dusenberrymw/9df3e7e96e6ecf37f5badf4a7d04012a to your computer and use it in GitHub Desktop.
Save dusenberrymw/9df3e7e96e6ecf37f5badf4a7d04012a to your computer and use it in GitHub Desktop.
# Magics
%matplotlib inline
%load_ext autoreload
%autoreload 2
# Imports
import math
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import tensorflow as tf
# Plot settings
plt.rcParams['figure.figsize'] = (10.0, 8.0) # set default size of plots
plt.rcParams['image.interpolation'] = 'nearest'
plt.rcParams['image.cmap'] = 'gray'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment