Skip to content

Instantly share code, notes, and snippets.

@frenzy2106
Created March 17, 2020 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frenzy2106/371f5b83630135dc9099ffa07bf077dd to your computer and use it in GitHub Desktop.
Save frenzy2106/371f5b83630135dc9099ffa07bf077dd to your computer and use it in GitHub Desktop.
# TensorFlow and tf.keras
import tensorflow as tf
from tensorflow import keras
# Helper libraries
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from tqdm import tqdm
from keras.preprocessing import image
from keras.utils import to_categorical
from sklearn.model_selection import train_test_split
print(tf.__version__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment