Skip to content

Commit 07bdb10

Browse files
committed
fix imports
1 parent fb55ee4 commit 07bdb10

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

aros_node/evaluate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy as np
22
from tqdm.notebook import tqdm
33
from sklearn.metrics import roc_curve, roc_auc_score, precision_recall_curve, auc
4-
from utils import *
4+
from aros_node.utils import *
55
import argparse
66
import torch
77
import torch.nn as nn

aros_node/stability_loss_function.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from robustbench.utils import load_model
33
import torch.nn as nn
44
from torch.nn.parameter import Parameter
5-
import utils
6-
from utils import *
5+
import aros_node.utils
6+
from aros_node.utils import *
77
from torch.utils.data import DataLoader, Dataset, TensorDataset, Subset, SubsetRandomSampler, ConcatDataset
88
import numpy as np
99
from tqdm.notebook import tqdm

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
name = aros
2+
name = aros-node
33
version = 0.0.1
44
author = Hossein Mirzaei, Mackenzie Mathis
55
author_email = [email protected]

0 commit comments

Comments
 (0)