Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created November 17, 2020 06:43
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
X = []
Y = []
for features,label in data:
X.append(features)
Y.append(label)
X = np.array(X)/255.0
X = X.reshape(-1,124,124,3)
Y = np.array(Y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment