BenchmarkDPFair 0.2.3__tar.gz → 0.2.4__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.3/src/BenchmarkDPFair.egg-info → benchmarkdpfair-0.2.4}/PKG-INFO +11 -3
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/README.md +9 -1
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/pyproject.toml +2 -3
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4/src/BenchmarkDPFair.egg-info}/PKG-INFO +11 -3
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair.egg-info/requires.txt +1 -1
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/LICENSE +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/setup.cfg +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/__init__.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/benchmark.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/dataconf.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/__init__.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/auxiliar.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/benchmark.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/inp.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/pos.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/pre.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/types.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/verifiers.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/__init__.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/dataconf.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/datagen.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/utils/verifiers.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/__init__.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair.egg-info/SOURCES.txt +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair.egg-info/dependency_links.txt +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair.egg-info/top_level.txt +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/tests/test_benchmark.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/tests/test_dataconf.py +0 -0
- {benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/tests/test_datagen.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BenchmarkDPFair
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
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,7 +44,7 @@ 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>=2.
|
|
47
|
+
Requires-Dist: xgboost-cpu>=3.2.0
|
|
48
48
|
Requires-Dist: cvxpy>=1.6.5
|
|
49
49
|
Requires-Dist: chex>=0.1.87
|
|
50
50
|
Requires-Dist: BlackBoxAuditing==0.1.54
|
|
@@ -69,16 +69,24 @@ This repository provides a Python framework for **benchmarking fairness mechanis
|
|
|
69
69
|
## Installation
|
|
70
70
|
|
|
71
71
|
> From source
|
|
72
|
-
To install, clone the repository and install dependencies:
|
|
72
|
+
To install, either use PyPi to isntall it, or clone the repository and install dependencies:
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
git clone https://github.com/vinicius-verona/dp-fair-intervention-benchmark.git
|
|
76
76
|
cd dp-fair-intervention-benchmark
|
|
77
|
+
|
|
78
|
+
python3 -m venv dpfair-env
|
|
79
|
+
source dpfair-env/bin/activate
|
|
80
|
+
|
|
81
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
77
82
|
pip install -e .
|
|
78
83
|
```
|
|
79
84
|
|
|
80
85
|
> Using PyPi **(SUGGESTED)**
|
|
81
86
|
```bash
|
|
87
|
+
python3 -m venv dpfair-env
|
|
88
|
+
source dpfair-env/bin/activate
|
|
89
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
82
90
|
pip install BenchmarkDPFair
|
|
83
91
|
````
|
|
84
92
|
|
|
@@ -17,16 +17,24 @@ This repository provides a Python framework for **benchmarking fairness mechanis
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
19
19
|
> From source
|
|
20
|
-
To install, clone the repository and install dependencies:
|
|
20
|
+
To install, either use PyPi to isntall it, or clone the repository and install dependencies:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
git clone https://github.com/vinicius-verona/dp-fair-intervention-benchmark.git
|
|
24
24
|
cd dp-fair-intervention-benchmark
|
|
25
|
+
|
|
26
|
+
python3 -m venv dpfair-env
|
|
27
|
+
source dpfair-env/bin/activate
|
|
28
|
+
|
|
29
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
25
30
|
pip install -e .
|
|
26
31
|
```
|
|
27
32
|
|
|
28
33
|
> Using PyPi **(SUGGESTED)**
|
|
29
34
|
```bash
|
|
35
|
+
python3 -m venv dpfair-env
|
|
36
|
+
source dpfair-env/bin/activate
|
|
37
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
30
38
|
pip install BenchmarkDPFair
|
|
31
39
|
````
|
|
32
40
|
|
|
@@ -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.4"
|
|
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,11 +27,10 @@ dependencies = [
|
|
|
27
27
|
"smartnoise-synth>=1.0.5",
|
|
28
28
|
"tabulate>=0.9.0",
|
|
29
29
|
"ucimlrepo>=0.0.7",
|
|
30
|
-
"xgboost>=2.
|
|
30
|
+
"xgboost-cpu>=3.2.0",
|
|
31
31
|
"cvxpy>=1.6.5",
|
|
32
32
|
"chex>=0.1.87",
|
|
33
33
|
"BlackBoxAuditing==0.1.54"
|
|
34
|
-
|
|
35
34
|
]
|
|
36
35
|
license = { file = "LICENSE" }
|
|
37
36
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BenchmarkDPFair
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
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,7 +44,7 @@ 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>=2.
|
|
47
|
+
Requires-Dist: xgboost-cpu>=3.2.0
|
|
48
48
|
Requires-Dist: cvxpy>=1.6.5
|
|
49
49
|
Requires-Dist: chex>=0.1.87
|
|
50
50
|
Requires-Dist: BlackBoxAuditing==0.1.54
|
|
@@ -69,16 +69,24 @@ This repository provides a Python framework for **benchmarking fairness mechanis
|
|
|
69
69
|
## Installation
|
|
70
70
|
|
|
71
71
|
> From source
|
|
72
|
-
To install, clone the repository and install dependencies:
|
|
72
|
+
To install, either use PyPi to isntall it, or clone the repository and install dependencies:
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
git clone https://github.com/vinicius-verona/dp-fair-intervention-benchmark.git
|
|
76
76
|
cd dp-fair-intervention-benchmark
|
|
77
|
+
|
|
78
|
+
python3 -m venv dpfair-env
|
|
79
|
+
source dpfair-env/bin/activate
|
|
80
|
+
|
|
81
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
77
82
|
pip install -e .
|
|
78
83
|
```
|
|
79
84
|
|
|
80
85
|
> Using PyPi **(SUGGESTED)**
|
|
81
86
|
```bash
|
|
87
|
+
python3 -m venv dpfair-env
|
|
88
|
+
source dpfair-env/bin/activate
|
|
89
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
|
82
90
|
pip install BenchmarkDPFair
|
|
83
91
|
````
|
|
84
92
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/__init__.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/auxiliar.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/benchmark.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/types.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/Benchmark/utils/verifiers.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/__init__.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/dataconf.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/datagen.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair/DataGenerator/utils/verifiers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.3 → benchmarkdpfair-0.2.4}/src/BenchmarkDPFair.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|