Skip to content
Snippets Groups Projects
Commit 5b26d599 authored by Elkhadri Doha's avatar Elkhadri Doha
Browse files

Upload New File

parent e4306dad
Branches
No related tags found
No related merge requests found
from read_cifar import read_cifar
def test_read_cifar():
data, labels = read_cifar(r'C:\Users\etulyon1\OneDrive\Desktop\Deep_Learning1\image-classification\data')
assert data.shape == (60000, 3072)
assert labels.shape == (60000,)
assert data.dtype == 'float32'
assert labels.dtype == 'int64'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment