You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: federated_learning/breast_density_challenge/README.md
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,15 @@ We provide a minimal example of how to implement Federated Averaging using [NVFl
15
15
### 1.1 Download example data
16
16
Follow the steps described in [./data/README.md](./data/README.md) to download an example breast density mammography dataset.
17
17
Note, the data used in the actual challenge will be different. We do however follow the same preprocessing steps and
18
-
use the same four BI-RADS breast density classes for prediction.
18
+
use the same four BI-RADS breast density classes for prediction, See [./code/pt/utils/preprocess_dicomdir.py](./code/pt/utils/preprocess_dicomdir.py) for details.
19
19
20
-
We provide a set of random data splits as `./data/dataset_blinded_site-*.json` which follows the same format as what
21
-
will be used in the challenge. Please do not modify the data list filenames in the configs as they will be the same during the challenge.
20
+
We provide a set of random data splits. Please download them using
After download, they will be available as `./data/dataset_blinded_site-*.json` which follows the same format as what
25
+
will be used in the challenge.
26
+
Please do not modify the data list filenames in the configs as they will be the same during the challenge.
22
27
23
28
Note, the location of the dataset and data lists will be given by the system.
24
29
Do not change the locations given in [config_fed_client.json](./code/configs/mammo_fedavg/config/config_fed_client.json):
@@ -135,7 +140,8 @@ Your FL framework will also need those ports for implementing the communication.
135
140
136
141
### 3.5 Results
137
142
Results will need to be written to `/result/predictions.json`.
138
-
Please follow the format produced by the reference implementation at [./result_server/predictions.json](./result_server/predictions.json)
143
+
Please follow the format produced by the reference implementation at [./result_server_example/predictions.json](./result_server_example/predictions.json)
144
+
(available after running `python3 ./code/pt/utils/download_datalists_and_predictions.py`)
139
145
The code is expected to return a json file containing at least list of image names and prediction probabilities for each breast density class
140
146
for the global model (should be named `SRV_best_FL_global_model.pt`).
0 commit comments