Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.4] Update ClientAlgo #2566

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,6 @@ The final folder structure under `JOB_NAME` will be:
```


The logging.conf inside the bundle will overwrite the logger behavior, so let's remove it:

```
rm ./${JOB_NAME}/app/config/spleen_ct_segmentation/configs/logging.conf
```

## 2. Download the data

Download the spleen CT data from the [MSD challenge](http://medicaldecathlon.com/) and update data path.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ The final folder structure under `JOB_NAME` will be:
└── meta.json
```

The logging.conf inside the bundle will overwrite the logger behavior, so let's remove it:

```
rm ./${JOB_NAME}/app/config/spleen_ct_segmentation/configs/logging.conf
```

### 2. Download the data
Download the spleen CT data from the [MSD challenge](http://medicaldecathlon.com/) and update data path.
Expand Down
1 change: 1 addition & 0 deletions integration/monai/monai_nvflare/client_algo_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ def initialize(self, fl_ctx: FLContext):
ExtraItems.CLIENT_NAME: fl_ctx.get_identity_name(),
ExtraItems.APP_ROOT: fl_ctx.get_prop(FLContextKey.APP_ROOT),
ExtraItems.STATS_SENDER: stats_sender,
ExtraItems.LOGGING_FILE: False,
}
)
except Exception as e:
Expand Down
Loading