Skip to content
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
3 changes: 2 additions & 1 deletion docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ Test the newly implemented features locally by following instructions in the [Co
Once you have added a minimum number of content to your branch, you can create a [draft PR](https://github.blog/2019-02-14-introducing-draft-pull-requests/). Create a pull request to merge your branch (e.g., `202-train-bug-nacho`) into the `develop` branch. `develop` should always be functional and up to date with new working features. It is the equivalent of the `main`or `master` branch in DISCO.
It is important to give a good description to your PR as this makes it easier for other people to go through it.

> [!TIP] > [This PR](https://github.com/epfml/disco/pull/176) is a good example.
> [!TIP]
> [This PR](https://github.com/epfml/disco/pull/176) is a good example.

### 5. Before requesting a review

Expand Down
2 changes: 1 addition & 1 deletion docs/PRIVACY.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Differential privacy (DP) is a rigorous privacy framework that provides a privac

In DISCO, differential privacy ensures privacy by making sure that the weight updates produced by one client do not significantly change when a single data point in that client's dataset is modified. This is called local differential privacy (LDP). Before sharing weight updates with the server, random noise is added to these updates. By examining only the weight updates that each client sends to the server, no party, including the server, can infer who generated a specific update or which datasets particular clients have.

Differntial privacy has an important parameter, epsilon($\epsilon$), which indicates the privacy level applied to the learning process. It is also called the "privacy budget."
Differential privacy has an key parameter, epsilon($\epsilon$), which indicates the privacy level applied to the learning process. It is also called the "privacy budget."

### Parameter Explanations
Differential privacy is achieved by adding noise. To guarantee your desired privacy level, you need to specify several parameters:
Expand Down
2 changes: 1 addition & 1 deletion docs/VUEJS.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ See [Naming convention section](#naming-conventions) for more information.

### `Container` directory

The `container` directory holds all `vue` components that fulfil a container function. In other words, most components in this folder make extensive use of the [slot `vue` construct](https://v3.vuejs.org/guide/component-slots.html)
The `container` directory holds all `vue` components that fulfill a container function. In other words, most components in this folder make extensive use of the [slot `vue` construct](https://v3.vuejs.org/guide/component-slots.html)

```html
<slot name="XXX"></slot>
Expand Down