Skip to content
Snippets Groups Projects
Commit 17beae9a authored by Luc Giffon's avatar Luc Giffon
Browse files

WIP tests for implementation of Caltech101 dataset interface

parent 009ab0f5
No related branches found
No related tags found
No related merge requests found
import os
import unittest
from skluc.main.data.mldatasets.Caltech101Dataset import Caltech101Dataset
class TestCaltech101Dataset(unittest.TestCase):
def test_caltech(self):
d = Caltech101Dataset()
d.load()
for name in d.l_filepaths:
self.assertTrue(os.path.exists(name))
if __name__ == "__main__":
unittest.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment