Skip to content

Commit

Permalink
feat: lidc preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
tbung committed Oct 2, 2023
1 parent 691cc66 commit f7324fb
Show file tree
Hide file tree
Showing 4 changed files with 451 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ Download the dataset from their website and extract to `$DATASET_ROOT_DIR/lidc_i

- [LIDC-IDRI](https://wiki.cancerimagingarchive.net/pages/viewpage.action?pageId=1966254)

Then run the data preprocessing:
Prepare the dataset by following the instructions in [the separate LIDC readme](../fd_shifts/loaders/preparation/lidc-idri/README.md).

Finaly, run the data preprocessing:

```bash
fd_shifts prepare --dataset lung_ct
Expand Down
3 changes: 2 additions & 1 deletion fd_shifts/loaders/preparation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from fd_shifts.loaders.preparation.dermoscopy import prepare_dermoscopy
from fd_shifts.loaders.preparation.lung_ct import prepare_lidc
from fd_shifts.loaders.preparation.microscopy import prepare_rxrx1
from fd_shifts.loaders.preparation.xray import prepare_xray

__all__ = ["prepare_rxrx1", "prepare_dermoscopy", "prepare_xray"]
__all__ = ["prepare_rxrx1", "prepare_dermoscopy", "prepare_xray", "prepare_lidc"]
Loading

0 comments on commit f7324fb

Please sign in to comment.