Skip to content
This repository has been archived by the owner on May 6, 2023. It is now read-only.

Commit

Permalink
fix: resolve issue with transform for COVID19 datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
AFAgarap committed Feb 14, 2021
1 parent 743b75d commit e44b8b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pt_datasets/load_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,14 @@ def load_dataset(
train_dataset, test_dataset = load_wdbc()
elif name == "binary_covid":
train_dataset, test_dataset = load_binary_covid19(
transform=transform,
transform=None,
size=image_size,
preprocessed=preprocessed_covidx,
preprocessing_bsize=preprocessing_bsize,
)
elif name == "multi_covid":
train_dataset, test_dataset = load_multi_covid19(
transform=transform,
transform=None,
size=image_size,
preprocessed=preprocessed_covidx,
preprocessing_bsize=preprocessing_bsize,
Expand Down

0 comments on commit e44b8b9

Please sign in to comment.