Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated in1d to isin #33

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/caked/dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ def load(self, datapath, datatype) -> None:
if len(self.classes) == 0:
self.classes = ids
else:
class_check = np.in1d(self.classes, ids)
class_check = np.isin(self.classes, ids)
if not np.all(class_check):
msg = "Not all classes in the list are present in the directory. Missing classes: {}".format(
np.asarray(self.classes)[~class_check]
)
raise RuntimeError(msg)
class_check = np.in1d(ids, self.classes)
class_check = np.isin(ids, self.classes)
if not np.all(class_check):
logging.basicConfig(format="%(message)s", level=logging.INFO)
logging.info(
Expand Down
Loading