Skip to content

Commit d90cf35

Browse files
committed
test
1 parent ceecb22 commit d90cf35

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tests/test_createfolders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils import createfolders
1+
from CollaborativeCoding import createfolders
22

33

44
def test_createfolders():

tests/test_dataloaders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils.dataloaders.usps_0_6 import USPSDataset0_6
1+
from CollaborativeCoding.dataloaders.usps_0_6 import USPSDataset0_6
22

33

44
def test_uspsdataset0_6():

tests/test_metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import pytest
44

5-
from utils.load_metric import MetricWrapper
6-
from utils.metrics import Accuracy, F1Score, Precision, Recall
5+
from CollaborativeCoding.load_metric import MetricWrapper
6+
from CollaborativeCoding.metrics import Accuracy, F1Score, Precision, Recall
77

88

99
@pytest.mark.parametrize(

tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
import torch
33

4-
from utils.models import ChristianModel, JanModel, MagnusModel
4+
from CollaborativeCoding.models import ChristianModel, JanModel, MagnusModel
55

66

77
@pytest.mark.parametrize(

tests/test_wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils import load_data, load_metric, load_model
1+
from CollaborativeCoding import load_data, load_metric, load_model
22

33
# def test_load_model():
44
# import torch as th

0 commit comments

Comments
 (0)