Skip to content

Commit 90396fc

Browse files
committed
Merge branch 'experiment/onnx-runtime'
2 parents 48b7f5f + 17c6aff commit 90396fc

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

python/keras-mnist/tests/test_load_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from src.data_loaders.mnist_data_loader import MNISTDataLoader
2+
from data_loaders.mnist_data_loader import MNISTDataLoader
33

44

55
class TestLoadData(unittest.TestCase):

python/keras-mnist/tests/test_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from tensorflow.keras import layers, models
2-
from src.models.simple_nn import SimpleNN
2+
from models.simple_nn import SimpleNN
33

44

55
def test_build():

python/pt-mnist/tests/test_load_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22
import torch
3-
from src.data_loaders.mnist_data_loader import MNISTDataLoader
3+
from data_loaders.mnist_data_loader import MNISTDataLoader
44

55

66
class TestLoadData(unittest.TestCase):

python/pt-mnist/tests/test_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import torch
2-
from src.models.simple_nn import SimpleNN
2+
from models.simple_nn import SimpleNN
33

44

55
def test_build():

python/pt-yolo-coco/tests/test_load_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import tempfile
44
import os
55
from 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

99
class TestCOCOLoadData(unittest.TestCase):

python/pt-yolo-coco/tests/test_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22
import torch
3-
from src.models.yolo_v4_tiny import YOLOv4Tiny
3+
from models.yolo_v4_tiny import YOLOv4Tiny
44

55

66
class TestYOLOv4Tiny(unittest.TestCase):

0 commit comments

Comments
 (0)