syft-flwr 0.3.0__tar.gz → 0.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of syft-flwr might be problematic. Click here for more details.
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/PKG-INFO +7 -3
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/README.md +6 -2
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/pyproject.toml +2 -1
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/__init__.py +1 -1
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/.gitignore +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/LICENSE +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/bootstrap.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/cli.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/config.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/consts.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/flower_client.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/flower_server.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/grid.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/mounts.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/run.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/run_simulation.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/serde.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/strategy/__init__.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/strategy/fedavg.py +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/templates/main.py.tpl +0 -0
- {syft_flwr-0.3.0 → syft_flwr-0.3.2}/src/syft_flwr/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syft-flwr
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: syft_flwr is an open source framework that facilitate federated learning projects using Flower over the SyftBox protocol
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -18,10 +18,14 @@ Description-Content-Type: text/markdown
|
|
|
18
18
|
|
|
19
19
|
`syft_flwr` is an open source framework that facilitate federated learning (FL) projects using [Flower](https://github.com/adap/flower) over the [SyftBox](https://github.com/OpenMined/syftbox) protocol
|
|
20
20
|
|
|
21
|
-

|
|
21
|
+

|
|
22
22
|
|
|
23
23
|
## Example Usages
|
|
24
24
|
Please look at the `notebooks/` folder for example use cases:
|
|
25
25
|
- [FL diabetes prediction](notebooks/fl-diabetes-prediction/README.md) shows how to train a federated model over distributed machines for multiple rounds
|
|
26
26
|
- [Federated analytics](notebooks/federated-analytics-diabetes/README.md) shows how to query statistics from private datasets from distributed machines and then aggregate them
|
|
27
|
-
- [FedRAG (Federated RAG)](notebooks/fedrag/README.md) demonstrates privacy-preserving question answering using Retrieval Augmented Generation across distributed document sources with remote data science workflow
|
|
27
|
+
- [FedRAG (Federated RAG)](notebooks/fedrag/README.md) demonstrates privacy-preserving question answering using Retrieval Augmented Generation across distributed document sources with remote data science workflow
|
|
28
|
+
|
|
29
|
+
## Development
|
|
30
|
+
### Releasing
|
|
31
|
+
See [RELEASE.md](RELEASE.md) for the complete release process.
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
`syft_flwr` is an open source framework that facilitate federated learning (FL) projects using [Flower](https://github.com/adap/flower) over the [SyftBox](https://github.com/OpenMined/syftbox) protocol
|
|
4
4
|
|
|
5
|
-

|
|
5
|
+

|
|
6
6
|
|
|
7
7
|
## Example Usages
|
|
8
8
|
Please look at the `notebooks/` folder for example use cases:
|
|
9
9
|
- [FL diabetes prediction](notebooks/fl-diabetes-prediction/README.md) shows how to train a federated model over distributed machines for multiple rounds
|
|
10
10
|
- [Federated analytics](notebooks/federated-analytics-diabetes/README.md) shows how to query statistics from private datasets from distributed machines and then aggregate them
|
|
11
|
-
- [FedRAG (Federated RAG)](notebooks/fedrag/README.md) demonstrates privacy-preserving question answering using Retrieval Augmented Generation across distributed document sources with remote data science workflow
|
|
11
|
+
- [FedRAG (Federated RAG)](notebooks/fedrag/README.md) demonstrates privacy-preserving question answering using Retrieval Augmented Generation across distributed document sources with remote data science workflow
|
|
12
|
+
|
|
13
|
+
## Development
|
|
14
|
+
### Releasing
|
|
15
|
+
See [RELEASE.md](RELEASE.md) for the complete release process.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "syft-flwr"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.2"
|
|
4
4
|
description = "syft_flwr is an open source framework that facilitate federated learning projects using Flower over the SyftBox protocol"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -66,4 +66,5 @@ update_changelog_on_bump = false
|
|
|
66
66
|
version_files = [
|
|
67
67
|
"pyproject.toml:^version\\s*=\\s*\"(?P<version>.*)\"$",
|
|
68
68
|
"src/syft_flwr/__init__.py:^__version__\\s*=\\s*\"(?P<version>.*)\"$",
|
|
69
|
+
"notebooks/*/pyproject.toml:\"syft-flwr>=(?P<version>[^\"]+)\"",
|
|
69
70
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|