Skip to content

soumith/cifar.torch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Downloads Cifar datasets directly from http://www.cs.toronto.edu/~kriz/cifar.html and converts them to Torch tables.

Cifar-100 format

Writes two files: cifar100-train.t7, cifar100-test.t7 Each of them is a table of the form:

th> c100 = torch.load('cifar100-train.t7')
th> print(c100)
{
        labelCoarse : ByteTensor - size: 50000
        data : ByteTensor - size: 50000x3x32x32
        label : ByteTensor - size: 50000
}

Cifar-10 format

Writes two files: cifar10-train.t7, cifar10-test.t7 Each of them is a table of the form:

th> c10 = torch.load('cifar10-train.t7')
th> print(c10)
{
        data : ByteTensor - size: 50000x3x32x32
        label : ByteTensor - size: 50000
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages