Update README.md
Browse files
README.md
CHANGED
|
@@ -43,5 +43,5 @@ vY = np.concatenate((vYTrain, vYVal), axis = 0)
|
|
| 43 |
mX = np.reshape(tX, (tX.shape[0], -1))
|
| 44 |
|
| 45 |
dfData = pd.DataFrame(np.concatenate((mX, vY[:, np.newaxis]), axis = 1), columns = [f'Pixel_{ii:04d}' for ii in range(mX.shape[1])] + ['Label'])
|
| 46 |
-
dfData.
|
| 47 |
```
|
|
|
|
| 43 |
mX = np.reshape(tX, (tX.shape[0], -1))
|
| 44 |
|
| 45 |
dfData = pd.DataFrame(np.concatenate((mX, vY[:, np.newaxis]), axis = 1), columns = [f'Pixel_{ii:04d}' for ii in range(mX.shape[1])] + ['Label'])
|
| 46 |
+
dfData.to_parquet('CIFAR10.parquet', index = False)
|
| 47 |
```
|