This file contains 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
#https://towardsdatascience.com/easy-image-classification-with-tensorflow-2-0-f734fee52d13 | |
import tensorflow as tf | |
from tensorflow import keras | |
import datetime as dt | |
import pandas as pd | |
import sklearn.model_selection as sk | |
# tf.enable_eager_execution() | |
print(tf.__version__) | |
train_csv = pd.read_csv('data/train.csv') |