Royi commited on
Commit
27a2e02
·
verified ·
1 Parent(s): c579cbb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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.to_csv('CIFAR10.csv', index = False)
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
  ```