Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion monai/apps/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class MedNISTDataset(Randomizable, CacheDataset):

"""

resource = "https://www.dropbox.com/s/5wwskxctvcxiuea/MedNIST.tar.gz?dl=1"
resource = "https://drive.google.com/uc?id=13MhoPsNgI6qboJfLicFf_jNvsFUbIYsd"
md5 = "0bc7306e7427e00ad1c5526a6677552d"
compressed_file_name = "MedNIST.tar.gz"
dataset_folder_name = "MedNIST"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_download_and_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TestDownloadAndExtract(unittest.TestCase):
@skip_if_quick
def test_actions(self):
testing_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "testing_data")
url = "https://www.dropbox.com/s/5wwskxctvcxiuea/MedNIST.tar.gz?dl=1"
url = "https://drive.google.com/uc?id=13MhoPsNgI6qboJfLicFf_jNvsFUbIYsd"
filepath = os.path.join(testing_dir, "MedNIST.tar.gz")
output_dir = testing_dir
md5_value = "0bc7306e7427e00ad1c5526a6677552d"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_classification_2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from tests.testing_data.integration_answers import test_integration_value
from tests.utils import DistTestCase, TimedCall, skip_if_quick

TEST_DATA_URL = "https://www.dropbox.com/s/5wwskxctvcxiuea/MedNIST.tar.gz?dl=1"
TEST_DATA_URL = "https://drive.google.com/uc?id=13MhoPsNgI6qboJfLicFf_jNvsFUbIYsd"
MD5_VALUE = "0bc7306e7427e00ad1c5526a6677552d"
TASK = "integration_classification_2d"

Expand Down