Skip to content

Commit

Permalink
fixed invalid import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
BaderTim committed Jan 28, 2024
1 parent ae86574 commit 2da21b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions baselines/model/tests/test_icp.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
import numpy as np
import time
import torch
from baselines.model.ICP.ICP import ICP
from baselines.model.ICP.module import icp
from model.ICP.ICP import ICP
from model.ICP.module import icp


def test_icp_module():
Expand Down
2 changes: 1 addition & 1 deletion baselines/model/tests/test_random.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import torch

from baselines.model.RANDOM.RANDOM import RANDOM
from model.RANDOM.RANDOM import RANDOM

def test_random_forward_pass():
K = 2
Expand Down
2 changes: 1 addition & 1 deletion baselines/model/tests/test_zero.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import torch

from baselines.model.ZERO.ZERO import ZERO
from model.ZERO.ZERO import ZERO

def test_zero_forward_pass():
K = 2
Expand Down

0 comments on commit 2da21b9

Please sign in to comment.