File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11import unittest
2- from src . data_loaders .mnist_data_loader import MNISTDataLoader
2+ from data_loaders .mnist_data_loader import MNISTDataLoader
33
44
55class TestLoadData (unittest .TestCase ):
Original file line number Diff line number Diff line change 11from tensorflow .keras import layers , models
2- from src . models .simple_nn import SimpleNN
2+ from models .simple_nn import SimpleNN
33
44
55def test_build ():
Original file line number Diff line number Diff line change 11import unittest
22import torch
3- from src . data_loaders .mnist_data_loader import MNISTDataLoader
3+ from data_loaders .mnist_data_loader import MNISTDataLoader
44
55
66class TestLoadData (unittest .TestCase ):
Original file line number Diff line number Diff line change 11import torch
2- from src . models .simple_nn import SimpleNN
2+ from models .simple_nn import SimpleNN
33
44
55def test_build ():
Original file line number Diff line number Diff line change 33import tempfile
44import os
55from unittest .mock import patch , MagicMock
6- from src . data_loaders .coco_data_loader import COCODataLoader
6+ from data_loaders .coco_data_loader import COCODataLoader
77
88
99class TestCOCOLoadData (unittest .TestCase ):
Original file line number Diff line number Diff line change 11import unittest
22import torch
3- from src . models .yolo_v4_tiny import YOLOv4Tiny
3+ from models .yolo_v4_tiny import YOLOv4Tiny
44
55
66class TestYOLOv4Tiny (unittest .TestCase ):
You can’t perform that action at this time.
0 commit comments