BenchmarkDPFair 0.2.6__tar.gz → 0.2.7__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.
- {benchmarkdpfair-0.2.6/src/BenchmarkDPFair.egg-info → benchmarkdpfair-0.2.7}/PKG-INFO +11 -4
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/README.md +7 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/pyproject.toml +4 -4
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7/src/BenchmarkDPFair.egg-info}/PKG-INFO +11 -4
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair.egg-info/requires.txt +3 -3
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/LICENSE +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/setup.cfg +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/__init__.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/benchmark.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/dataconf.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/__init__.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/auxiliar.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/benchmark.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/inp.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/pos.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/pre.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/types.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/verifiers.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/__init__.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/dataconf.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/datagen.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/utils/verifiers.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/__init__.py +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair.egg-info/SOURCES.txt +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair.egg-info/dependency_links.txt +0 -0
- {benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BenchmarkDPFair
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: A differentially private data synthesizer and fairness intervention benchmark framework
|
|
5
5
|
Author-email: Vinicius Gabriel Angelozzi Verona de Resende <verona.projects@tutanota.com>, Héber Hwang Arcolezi <heber.hwang-arcolezi@etsmtl.ca>
|
|
6
6
|
License: MIT License
|
|
@@ -44,9 +44,9 @@ Requires-Dist: smartnoise-sql>=1.0.6
|
|
|
44
44
|
Requires-Dist: smartnoise-synth>=1.0.5
|
|
45
45
|
Requires-Dist: tabulate>=0.9.0
|
|
46
46
|
Requires-Dist: ucimlrepo>=0.0.7
|
|
47
|
-
Requires-Dist: xgboost
|
|
48
|
-
Requires-Dist: xgboost-cpu
|
|
49
|
-
Requires-Dist: xgboost-cpu
|
|
47
|
+
Requires-Dist: xgboost; sys_platform == "darwin"
|
|
48
|
+
Requires-Dist: xgboost-cpu; sys_platform == "linux"
|
|
49
|
+
Requires-Dist: xgboost-cpu; sys_platform == "win32"
|
|
50
50
|
Requires-Dist: cvxpy>=1.6.5
|
|
51
51
|
Requires-Dist: chex>=0.1.87
|
|
52
52
|
Requires-Dist: BlackBoxAuditing==0.1.54
|
|
@@ -78,6 +78,13 @@ source dpfair-env/bin/activate # On Windows: dpfair-env\\Scripts\\activate
|
|
|
78
78
|
# Installation approach via PyPi or source installation
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
+
|
|
82
|
+
When using Python 3.9, a specific version of the MBI library (`private-pgm`) must be installed by running the following command:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
pip install git+https://github.com/ryan112358/private-pgm.git@01f02f17eba440f4e76c1d06fa5ee9eed0bd2bca
|
|
86
|
+
```
|
|
87
|
+
|
|
81
88
|
If you are a Windows or Linux user, please install PyTorch CPU-only dependencies: [Step not required for Mac users]
|
|
82
89
|
```bash
|
|
83
90
|
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
@@ -24,6 +24,13 @@ source dpfair-env/bin/activate # On Windows: dpfair-env\\Scripts\\activate
|
|
|
24
24
|
# Installation approach via PyPi or source installation
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
|
|
28
|
+
When using Python 3.9, a specific version of the MBI library (`private-pgm`) must be installed by running the following command:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install git+https://github.com/ryan112358/private-pgm.git@01f02f17eba440f4e76c1d06fa5ee9eed0bd2bca
|
|
32
|
+
```
|
|
33
|
+
|
|
27
34
|
If you are a Windows or Linux user, please install PyTorch CPU-only dependencies: [Step not required for Mac users]
|
|
28
35
|
```bash
|
|
29
36
|
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "BenchmarkDPFair"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.7"
|
|
8
8
|
description = "A differentially private data synthesizer and fairness intervention benchmark framework"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name="Vinicius Gabriel Angelozzi Verona de Resende", email="verona.projects@tutanota.com" },
|
|
@@ -27,9 +27,9 @@ dependencies = [
|
|
|
27
27
|
"smartnoise-synth>=1.0.5",
|
|
28
28
|
"tabulate>=0.9.0",
|
|
29
29
|
"ucimlrepo>=0.0.7",
|
|
30
|
-
"xgboost
|
|
31
|
-
"xgboost-cpu
|
|
32
|
-
"xgboost-cpu
|
|
30
|
+
"xgboost; sys_platform == 'darwin'",
|
|
31
|
+
"xgboost-cpu; sys_platform == 'linux'",
|
|
32
|
+
"xgboost-cpu; sys_platform == 'win32'",
|
|
33
33
|
"cvxpy>=1.6.5",
|
|
34
34
|
"chex>=0.1.87",
|
|
35
35
|
"BlackBoxAuditing==0.1.54"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BenchmarkDPFair
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: A differentially private data synthesizer and fairness intervention benchmark framework
|
|
5
5
|
Author-email: Vinicius Gabriel Angelozzi Verona de Resende <verona.projects@tutanota.com>, Héber Hwang Arcolezi <heber.hwang-arcolezi@etsmtl.ca>
|
|
6
6
|
License: MIT License
|
|
@@ -44,9 +44,9 @@ Requires-Dist: smartnoise-sql>=1.0.6
|
|
|
44
44
|
Requires-Dist: smartnoise-synth>=1.0.5
|
|
45
45
|
Requires-Dist: tabulate>=0.9.0
|
|
46
46
|
Requires-Dist: ucimlrepo>=0.0.7
|
|
47
|
-
Requires-Dist: xgboost
|
|
48
|
-
Requires-Dist: xgboost-cpu
|
|
49
|
-
Requires-Dist: xgboost-cpu
|
|
47
|
+
Requires-Dist: xgboost; sys_platform == "darwin"
|
|
48
|
+
Requires-Dist: xgboost-cpu; sys_platform == "linux"
|
|
49
|
+
Requires-Dist: xgboost-cpu; sys_platform == "win32"
|
|
50
50
|
Requires-Dist: cvxpy>=1.6.5
|
|
51
51
|
Requires-Dist: chex>=0.1.87
|
|
52
52
|
Requires-Dist: BlackBoxAuditing==0.1.54
|
|
@@ -78,6 +78,13 @@ source dpfair-env/bin/activate # On Windows: dpfair-env\\Scripts\\activate
|
|
|
78
78
|
# Installation approach via PyPi or source installation
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
+
|
|
82
|
+
When using Python 3.9, a specific version of the MBI library (`private-pgm`) must be installed by running the following command:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
pip install git+https://github.com/ryan112358/private-pgm.git@01f02f17eba440f4e76c1d06fa5ee9eed0bd2bca
|
|
86
|
+
```
|
|
87
|
+
|
|
81
88
|
If you are a Windows or Linux user, please install PyTorch CPU-only dependencies: [Step not required for Mac users]
|
|
82
89
|
```bash
|
|
83
90
|
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/__init__.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/auxiliar.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/benchmark.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/types.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/Benchmark/utils/verifiers.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/__init__.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/dataconf.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/datagen.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair/DataGenerator/utils/verifiers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.6 → benchmarkdpfair-0.2.7}/src/BenchmarkDPFair.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|