From 444c291177a01d1207dd6268f31c2e8115a00a8c Mon Sep 17 00:00:00 2001 From: jishnu2512 <56735160+jishnu2512@users.noreply.github.com> Date: Fri, 18 Oct 2019 22:09:27 +0530 Subject: [PATCH] update data.py just added tensorflow library --- data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data.py b/data.py index 8620652..d5447f3 100644 --- a/data.py +++ b/data.py @@ -1,6 +1,7 @@ # Data Preprocessing Template # Importing the libraries +import tensorflow as tf import numpy as np import matplotlib.pyplot as plt import pandas as pd @@ -12,5 +13,4 @@ # Splitting the dataset into the Training set and Test set from sklearn.cross_validation import train_test_split -X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = 0) - +X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = 0)####