MCPcopy Create free account
hub / github.com/DeepGraphLearning/graphvite / __init__

Method __init__

python/graphvite/dataset.py:803–814  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

801 train_image_data, train_label_data, test_image_data, test_label_data, image_data, label_data
802 """
803 def __init__(self):
804 super(CIFAR10, self).__init__(
805 "cifar10",
806 urls={
807 "train_image_data": "https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz",
808 "train_label_data": "https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz",
809 "test_image_data": "https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz",
810 "test_label_data": "https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz",
811 "image_data": [], # depends on `train_image_data` & `test_image_data`
812 "label_data": [] # depends on `train_label_data` & `test_label_data`
813 },
814 )
815
816 def load_images(self, *batch_files):
817 images = []

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected