MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / getKaggleFashionMNIST3D

Function getKaggleFashionMNIST3D

keras_examples/util.py:43–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 return Xtrain, Ytrain, Xtest, Ytest
42
43def getKaggleFashionMNIST3D():
44 Xtrain, Ytrain, Xtest, Ytest = getKaggleFashionMNIST()
45 Xtrain = Xtrain.reshape(-1, 28, 28, 1)
46 Xtest = Xtest.reshape(-1, 28, 28, 1)
47 return Xtrain, Ytrain, Xtest, Ytest
48
49def getCIFAR10():
50 Xtrain = np.zeros((50000, 32, 32, 3), dtype=np.uint8)

Callers 2

cnn.pyFile · 0.90

Calls 1

getKaggleFashionMNISTFunction · 0.85

Tested by

no test coverage detected