From d72148a08394978db29277b922817cbe871fd2e5 Mon Sep 17 00:00:00 2001 From: Thomas <7998422+thomasp-ms@users.noreply.github.com> Date: Tue, 20 Jun 2023 07:19:49 -0700 Subject: [PATCH] fix broken links to bank marketing tutorial (#346) --- CHANGELOG.md | 2 +- README.md | 4 ++-- docs/README.md | 4 ++-- docs/concepts/vertical-fl.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d85ee27b..8f01a186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,7 +44,7 @@ Our major updates for this month are the addition of resources to provision vari ### FL Experience - Added support for data encryption at rest to the CCFRAUD example (instructions [here](./docs/real-world-examples/ccfraud.md#enable-confidentiality-with-encryption-at-rest)). -- Introduced new Vertical FL example: [Bank Marketing Campaign Prediction](https://github.com/Azure-Samples/azure-ml-federated-learning/blob/main/docs/real-world-examples/bank-marketing.md). +- Introduced new Vertical FL example: [Bank Marketing Campaign Prediction](https://github.com/Azure-Samples/azure-ml-federated-learning/blob/main/docs/real-world-examples/bank-marketing-vertical.md). - Improved the communications in Vertical FL jobs (support for redis streams and encrypted communications, better logging to measure communications overhead). ### Provisioning diff --git a/README.md b/README.md index e6d91b9f..6b7f3d15 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ Please also check our industry use cases below, which cover both horizontal (sam | [![medical imaging icon](./docs/pics/industry-medical-imaging.png)](./docs/real-world-examples/pneumonia-horizontal.md) | [![ner icon](./docs/pics/industry-ner.png)](./docs/real-world-examples/ner-horizontal.md) | [![credit card icon](./docs/pics/industry-fraud-detection.png)](./docs/real-world-examples/ccfraud-horizontal.md) | | [pneumonia.md](./docs/real-world-examples/pneumonia-horizontal.md) | [ner.md](./docs/real-world-examples/ner-horizontal.md) | [ccfraud.md](./docs/real-world-examples/ccfraud-horizontal.md) | | **Fraud Detection - Vertical** | **Fraud Detection - Vertical with Single Shot Communication** | **Bank Marketing - Vertical** | -| [![credit card icon](./docs/pics/industry-fraud-detection.png)](./docs/real-world-examples/ccfraud-horizontal.md) | [![credit card icon](./docs/pics/industry-fraud-detection.png)](./docs/real-world-examples/ccfraud-horizontal.md) | [![bank marketing icon](./docs/pics/industry-bank-marketing.png)](./docs/real-world-examples/bank-marketing.md) | -| [ccfraud-vertical.md](./docs/real-world-examples/ccfraud-vertical.md) | [ccfraud-vetical-fedonce.md](./docs/real-world-examples/ccfraud-vetical-fedonce.md) | [bank-marketing.md](./docs/real-world-examples/bank-marketing.md) | +| [![credit card icon](./docs/pics/industry-fraud-detection.png)](./docs/real-world-examples/ccfraud-horizontal.md) | [![credit card icon](./docs/pics/industry-fraud-detection.png)](./docs/real-world-examples/ccfraud-horizontal.md) | [![bank marketing icon](./docs/pics/industry-bank-marketing.png)](./docs/real-world-examples/bank-marketing-vertical.md) | +| [ccfraud-vertical.md](./docs/real-world-examples/ccfraud-vertical.md) | [ccfraud-vetical-fedonce.md](./docs/real-world-examples/ccfraud-vetical-fedonce.md) | [bank-marketing-vertical.md](./docs/real-world-examples/bank-marketing-vertical.md) | ### FL Frameworks diff --git a/docs/README.md b/docs/README.md index d0b208d8..86181fd1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -57,8 +57,8 @@ In addition to the [literal](../examples/pipelines/fl_cross_silo_literal/) and [ | [![medical imaging icon](./pics/industry-medical-imaging.png)](./real-world-examples/pneumonia-horizontal.md) | [![ner icon](./pics/industry-ner.png)](./real-world-examples/ner-horizontal.md) | [![credit card icon](./pics/industry-fraud-detection.png)](./real-world-examples/ccfraud-horizontal.md) | | [pneumonia.md](./real-world-examples/pneumonia-horizontal.md) | [ner.md](./real-world-examples/ner-horizontal.md) | [ccfraud.md](./real-world-examples/ccfraud-horizontal.md) | | **Fraud Detection - Vertical** | **Fraud Detection - Vertical with Single Shot Communication** | **Bank Marketing - Vertical** | -| [![credit card icon](./pics/industry-fraud-detection.png)](./real-world-examples/ccfraud-horizontal.md) | [![credit card icon](./pics/industry-fraud-detection.png)](./real-world-examples/ccfraud-horizontal.md) | [![bank marketing icon](./pics/industry-bank-marketing.png)](./real-world-examples/bank-marketing.md) | -| [ccfraud-vertical.md](./real-world-examples/ccfraud-vertical.md) | [ccfraud-vetical-fedonce.md](./real-world-examples/ccfraud-vetical-fedonce.md) | [bank-marketing.md](./real-world-examples/bank-marketing.md) | +| [![credit card icon](./pics/industry-fraud-detection.png)](./real-world-examples/ccfraud-horizontal.md) | [![credit card icon](./pics/industry-fraud-detection.png)](./real-world-examples/ccfraud-horizontal.md) | [![bank marketing icon](./pics/industry-bank-marketing.png)](./real-world-examples/bank-marketing-vertical.md) | +| [ccfraud-vertical.md](./real-world-examples/ccfraud-vertical.md) | [ccfraud-vetical-fedonce.md](./real-world-examples/ccfraud-vetical-fedonce.md) | [bank-marketing-vertical.md](./real-world-examples/bank-marketing-vertical.md) | ### Pneumonia detection from chest radiographs diff --git a/docs/concepts/vertical-fl.md b/docs/concepts/vertical-fl.md index c2dcc2b0..da52ba4e 100644 --- a/docs/concepts/vertical-fl.md +++ b/docs/concepts/vertical-fl.md @@ -18,7 +18,7 @@ This tutorial will guide you through the steps required to set up VFL experiment Split learning approach is demonstrated in MNIST (written number recognition) and [CCFRAUD (financial tabular data)](../real-world-examples/ccfraud-vertical.md) examples in order to showcase versatility of the solution in regards to type of the data. These two examples make use of mean aggregation, and the assumption is that the host owns only labels while features are equally distributed among the contributors. -We relax this assumption in a third example ([Bank Marketing](../real-world-examples/bank-marketing.md)), in which the host also owns part of the feature space. +We relax this assumption in a third example ([Bank Marketing](../real-world-examples/bank-marketing-vertical.md)), in which the host also owns part of the feature space. Modified version of the [CCFRAUD (financial tabular data) with FedOnce](../real-world-examples/ccfraud-vetical-fedonce.md) example showcases how to decrease amount of communication required across participants by utilizing Variational Autoencoders.