ve-gans / tests /test_dataset.py
Zai
updated the model loader and readme
c6494da
raw
history blame
321 Bytes
import unittest
from vegans.dataset import TrainingSet
class TestTraining(unittest.TestCase):
def test_download_dataset(self):
data = TrainingSet()
data.download_dataset()
assert data.images is not None
assert data.labels is not None
if __name__ == "__main__":
unittest.main()