diff --git a/datamint/examples/fracatlas_dataset.py b/datamint/examples/fracatlas_dataset.py index 592e81e2..7aefd9fa 100644 --- a/datamint/examples/fracatlas_dataset.py +++ b/datamint/examples/fracatlas_dataset.py @@ -37,7 +37,7 @@ def create(project_name: str = _DATASET_NAME, api: Api | None = None) -> Project return proj if not _download.is_cached('fracatlas'): - print('FracAtlas is ~1.2GB compressed - this download may take a few minutes.') + print('This download may take a few minutes.') download_url = _get_download_url() data_dir = _download.download_and_extract(download_url, 'fracatlas') diff --git a/notebooks/06_end_to_end/slice_based/01_fracatlas_classification.ipynb b/notebooks/06_end_to_end/slice_based/01_fracatlas_classification.ipynb index 7d5ab530..8a996db3 100644 --- a/notebooks/06_end_to_end/slice_based/01_fracatlas_classification.ipynb +++ b/notebooks/06_end_to_end/slice_based/01_fracatlas_classification.ipynb @@ -72,7 +72,7 @@ "source": [ "## 1. Setup: Create Project and Load Dataset\n", "\n", - "`datamint.examples.fracatlas_dataset` downloads the [FracAtlas dataset](https://doi.org/10.6084/m9.figshare.22363012) (~1.2GB compressed: this may take a few minutes), uploads the fractured / non-fractured X-ray images to a Datamint project, and creates a `has_fracture` classification annotation for each. The call is idempotent, if the project already exists, it's returned as-is without re-uploading." + "`datamint.examples.fracatlas_dataset` downloads the [FracAtlas dataset](https://doi.org/10.6084/m9.figshare.22363012) (This may take a few minutes), uploads the fractured / non-fractured X-ray images to a Datamint project, and creates a `has_fracture` classification annotation for each. The call is idempotent, if the project already exists, it's returned as-is without re-uploading." ] }, {