syft-flwr 0.2.1__tar.gz → 0.2.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.

@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syft-flwr
3
- Version: 0.2.1
3
+ Version: 0.2.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
7
7
  Requires-Dist: flwr-datasets[vision]>=0.5.0
8
- Requires-Dist: flwr[simulation]>=1.20.0
8
+ Requires-Dist: flwr[simulation]==1.21.0
9
9
  Requires-Dist: loguru>=0.7.3
10
10
  Requires-Dist: safetensors>=0.6.2
11
- Requires-Dist: syft-rds>=0.2.1
11
+ Requires-Dist: syft-rds>=0.2.2
12
12
  Requires-Dist: tomli-w>=1.2.0
13
13
  Requires-Dist: tomli>=2.2.1
14
14
  Requires-Dist: typing-extensions>=4.13.0
@@ -23,4 +23,5 @@ Description-Content-Type: text/markdown
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
- - [Federated analytics](notebooks/federated-analytics-diabetes/README.md) shows how to query statistics from private datasets from distributed machines and then aggregate them
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
@@ -7,4 +7,5 @@
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
- - [Federated analytics](notebooks/federated-analytics-diabetes/README.md) shows how to query statistics from private datasets from distributed machines and then aggregate them
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
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "syft-flwr"
3
- version = "0.2.1"
3
+ version = "0.2.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"
7
7
  dependencies = [
8
- "syft-rds>=0.2.1",
9
- "flwr[simulation]>=1.20.0",
8
+ "syft-rds>=0.2.2",
9
+ "flwr[simulation]==1.21.0",
10
10
  "flwr-datasets[vision]>=0.5.0",
11
11
  "loguru>=0.7.3",
12
12
  "safetensors>=0.6.2",
@@ -15,6 +15,10 @@ dependencies = [
15
15
  "tomli-w>=1.2.0",
16
16
  ]
17
17
 
18
+ # [tool.uv.sources]
19
+ # syft-rds = { path = "../syft-data-science" } # for development
20
+
21
+
18
22
  [project.scripts]
19
23
  syft_flwr = "syft_flwr.cli:main"
20
24
 
@@ -1,4 +1,4 @@
1
- __version__ = "0.2.1"
1
+ __version__ = "0.2.2"
2
2
 
3
3
  from syft_flwr.bootstrap import bootstrap
4
4
  from syft_flwr.run import run
File without changes
File without changes