Skip to content

Commit

Permalink
Add Secure XGBoost example (#2635)
Browse files Browse the repository at this point in the history
* Initial commit for xgboost-secure

* Initial commit for xgboost-secure

* Change model output path

* Change data mode

* Most basic xgboost process for coding

* Most basic xgboost process for coding

* Most basic xgboost process for coding

* Most basic xgboost process for coding

* First prototype for secure vertical pipeline

* Phase 1 concludes

* add seal pipeline in C++

* experiment will more tree depth to ensure correct node behavior

* experiment will more tree depth to ensure correct node behavior

* update secureboost eval bench

* set header to none for sample alignment

* config processor interface from python

* simplify data preparation, add horizontal testing codes

* remove redundants

* horizontal exps

* update scripts

* update test scripts

* add feature tests

* update to align all outputs' format

* remove conflict

* reorganize

* format

* add flare jobs

* add readme and experiment results
  • Loading branch information
ZiyueXu77 authored Jun 14, 2024
1 parent e7597e1 commit 07c7640
Show file tree
Hide file tree
Showing 38 changed files with 2,036 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/advanced/xgboost_secure/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Dataset
dataset/
84 changes: 84 additions & 0 deletions examples/advanced/xgboost_secure/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# Secure Federated XGBoost with Homomorphic Encryption
This example illustrates the use of [NVIDIA FLARE](https://nvflare.readthedocs.io/en/main/index.html) enabling secure federated [XGBoost](https://github.com/dmlc/xgboost) under both horizontal and vertical collaborations.
The examples are based on a [finance dataset](https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud) to perform fraud detection.

## Secure Federated Training of XGBoost
Several mechanisms have been proposed for training an XGBoost model in a federated learning setting, e.g. [vertical](https://github.com/NVIDIA/NVFlare/blob/main/examples/advanced/vertical_xgboost/README.md), [histogram-based horizontal](https://github.com/NVIDIA/NVFlare/tree/main/examples/advanced/xgboost/histogram-based/README.md), and [tree-based horizontal](https://github.com/NVIDIA/NVFlare/tree/main/examples/advanced/xgboost/tree-based/README.md).

In this example, we further extend the existing horizontal and vertical federated learning approaches to support secure federated learning using homomorphic encryption. Depending on the characteristics of the data to be encrypted, we can choose between [CKKS](https://github.com/OpenMined/TenSEAL) and [Paillier](https://github.com/intel/pailliercryptolib_python).

In the following, we illustrate both *horizontal* and *vertical* federated XGBoost, *without* and *with* homomorphic encryption. Please refer to our [documentation]() for more details on the pipeline design and the encryption logic.

## Data Preparation
### Download and Store Data
To run the examples, we first download the dataset from this [link](https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud), which is a single `.csv` file.
By default, we assume the dataset is downloaded, uncompressed, and stored in `${PWD}/dataset/creditcard.csv`.

> **_NOTE:_** If the dataset is downloaded in another place,
> make sure to modify the corresponding `DATASET_PATH` inside `prepare_data.sh`.
### Data Split
To prepare data for further experiments, we perform the following steps:
1. Split the dataset into training/validation and testing sets.
2. Split the training/validation set:
* Into train and valid for baseline centralized training.
* Into train and valid for each client under horizontal setting.
* Into train and valid for each client under vertical setting.

Data splits used in this example can be generated with
```
bash prepare_data.sh
```

This will generate data splits for 3 clients under all experimental settings. In this example, we assume the Private Set Intersection (PSI) step has already been performed for vertical collaboration.
See [vertical xgboost](https://github.com/NVIDIA/NVFlare/tree/main/examples/advanced/vertical_xgboost) for more details. With this assumption, the overlapping ratio between clients for vertical setting is 1.0, such that the training data amount is the same as baseline and horizontal experiments.

> **_NOTE:_** The generated data files will be stored in the folder `/tmp/nvflare/xgb_dataset/`,
> and will be used by jobs by specifying the path within `config_fed_client.json`
## Run Baseline and Standalone Experiments
First, we run the baseline centralized training and standalone federated XGBoost training for comparison.
In this case, we utilized the `mock` plugin to simulate the homomorphic encryption process.
For more details regarding federated XGBoost and the interface-plugin design, please refer to our [documentation]().

To run all experiments, we provide a script for all settings.
```
bash run_training_local.sh
```
This will cover baseline centralized training, local FL with and without secure feature.

From the results, we can have three observations:
1. The performance of the model trained with homomorphic encryption is identical to its counterpart without encryption.
2. Vertical federated learnings have identical performance as the centralized baseline.
3. Horizontal federated learnings have performance slightly different from the centralized baseline. This is because under horizontal FL, the local histogram quantiles are based on the local data distribution, which may not be the same as the global distribution.

Upon closer inspection over the tree models (under `/tmp/nvflare/xgb_exp`), we can observe that the tree structures are identical between the baseline and the vertical FL models, while different for horizontal models. Further, the secure vertical FL produces different tree records at different parties - because each party holds different feature subsets:

| ![Tree Structures](./figs/tree.base.png) |
|:-------------------------------------------------:|
| *Baseline Model* |
| ![Tree Structures](./figs/tree.vert.secure.0.png) |
| *Secure Vertical Model at Party 0* |
| ![Tree Structures](./figs/tree.vert.secure.1.png) |
| *Secure Vertical Model at Party 1* |
| ![Tree Structures](./figs/tree.vert.secure.2.png) |
| *Secure Vertical Model at Party 2* |

In this case we can notice that Party 0 holds Feature 7 and 10, Party 1 holds Feature 14, 17, and 12, and Party 2 holds none of the effective features for this tree - parties who do not hold the feature will and should not know the split value if it.

By combining the feature splits at all parties, the tree structures will be identical to the centralized baseline model.

## Run Federated Experiments with NVFlare
Next, we run the federated XGBoost training without and with homomorphic encryption using NVFlare. This time, instead of using the `mock` plugin, we use the real encryption plugins to perform homomorphic encryption.
We run the NVFlare jobs with:
```
bash run_training_fl.sh
```
The running time of each job depends mainly on the encryption workload.




To add:
- link to the documentation
- FL job results and time comparison, specify the computation environment
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"format_version": 2,
"num_rounds": 3,
"task_data_filters": [],
"task_result_filters": [],
"components": [
],
"workflows": [
{
"id": "xgb_controller",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.fed_controller.XGBFedController",
"args": {
"num_rounds": "{num_rounds}",
"training_mode": "horizontal",
"xgb_options": {
"early_stopping_rounds": 3
},
"xgb_params": {
"max_depth": 3,
"eta": 0.1,
"objective": "binary:logistic",
"eval_metric": "auc",
"tree_method": "hist",
"nthread": 1
},
"client_ranks": {
"site-1": 0,
"site-2": 1,
"site-3": 2
},
"in_process": true
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"format_version": 2,
"executors": [
{
"tasks": [
"config",
"start"
],
"executor": {
"id": "Executor",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.fed_executor.FedXGBHistogramExecutor",
"args": {
"data_loader_id": "dataloader",
"in_process": true
}
}
}
],
"task_result_filters": [],
"task_data_filters": [],
"components": [
{
"id": "dataloader",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.secure_data_loader.SecureDataLoader",
"args": {
"rank": 0,
"folder": "/tmp/nvflare/xgb_dataset/horizontal_xgb_data"
}
},
{
"id": "metrics_writer",
"path": "nvflare.app_opt.tracking.tb.tb_writer.TBWriter",
"args": {
"event_type": "analytix_log_stats"
}
},
{
"id": "event_to_fed",
"name": "ConvertToFedEvent",
"args": {
"events_to_convert": [
"analytix_log_stats"
],
"fed_event_prefix": "fed."
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"format_version": 2,
"executors": [
{
"tasks": [
"config",
"start"
],
"executor": {
"id": "Executor",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.fed_executor.FedXGBHistogramExecutor",
"args": {
"data_loader_id": "dataloader",
"in_process": true
}
}
}
],
"task_result_filters": [],
"task_data_filters": [],
"components": [
{
"id": "dataloader",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.secure_data_loader.SecureDataLoader",
"args": {
"rank": 1,
"folder": "/tmp/nvflare/xgb_dataset/horizontal_xgb_data"
}
},
{
"id": "metrics_writer",
"path": "nvflare.app_opt.tracking.tb.tb_writer.TBWriter",
"args": {
"event_type": "analytix_log_stats"
}
},
{
"id": "event_to_fed",
"name": "ConvertToFedEvent",
"args": {
"events_to_convert": [
"analytix_log_stats"
],
"fed_event_prefix": "fed."
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"format_version": 2,
"executors": [
{
"tasks": [
"config",
"start"
],
"executor": {
"id": "Executor",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.fed_executor.FedXGBHistogramExecutor",
"args": {
"data_loader_id": "dataloader",
"in_process": true
}
}
}
],
"task_result_filters": [],
"task_data_filters": [],
"components": [
{
"id": "dataloader",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.secure_data_loader.SecureDataLoader",
"args": {
"rank": 2,
"folder": "/tmp/nvflare/xgb_dataset/horizontal_xgb_data"
}
},
{
"id": "metrics_writer",
"path": "nvflare.app_opt.tracking.tb.tb_writer.TBWriter",
"args": {
"event_type": "analytix_log_stats"
}
},
{
"id": "event_to_fed",
"name": "ConvertToFedEvent",
"args": {
"events_to_convert": [
"analytix_log_stats"
],
"fed_event_prefix": "fed."
}
}
]
}
19 changes: 19 additions & 0 deletions examples/advanced/xgboost_secure/jobs/xgb_hori/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "xgb_horizontal",
"resource_spec": {},
"deploy_map": {
"app_server": [
"server"
],
"app_site-1": [
"site-1"
],
"app_site-2": [
"site-2"
],
"app_site-3": [
"site-3"
]
},
"min_clients": 3
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"format_version": 2,
"num_rounds": 3,
"task_data_filters": [],
"task_result_filters": [],
"components": [
],
"workflows": [
{
"id": "xgb_controller",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.fed_controller.XGBFedController",
"args": {
"num_rounds": "{num_rounds}",
"training_mode": "horizontal_secure",
"xgb_options": {
"early_stopping_rounds": 3
},
"xgb_params": {
"max_depth": 3,
"eta": 0.1,
"objective": "binary:logistic",
"eval_metric": "auc",
"tree_method": "hist",
"nthread": 1
},
"client_ranks": {
"site-1": 0,
"site-2": 1,
"site-3": 2
},
"in_process": true
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"format_version": 2,
"executors": [
{
"tasks": [
"config",
"start"
],
"executor": {
"id": "Executor",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.fed_executor.FedXGBHistogramExecutor",
"args": {
"data_loader_id": "dataloader",
"in_process": true
}
}
}
],
"task_result_filters": [],
"task_data_filters": [],
"components": [
{
"id": "dataloader",
"path": "nvflare.app_opt.xgboost.histogram_based_v2.secure_data_loader.SecureDataLoader",
"args": {
"rank": 0,
"folder": "/tmp/nvflare/xgb_dataset/horizontal_xgb_data"
}
},
{
"id": "metrics_writer",
"path": "nvflare.app_opt.tracking.tb.tb_writer.TBWriter",
"args": {
"event_type": "analytix_log_stats"
}
},
{
"id": "event_to_fed",
"name": "ConvertToFedEvent",
"args": {
"events_to_convert": [
"analytix_log_stats"
],
"fed_event_prefix": "fed."
}
}
]
}
Loading

0 comments on commit 07c7640

Please sign in to comment.