BenchmarkDPFair 0.2.2__tar.gz → 0.2.3__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.2/src/BenchmarkDPFair.egg-info → benchmarkdpfair-0.2.3}/PKG-INFO +3 -6
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/pyproject.toml +4 -7
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3/src/BenchmarkDPFair.egg-info}/PKG-INFO +3 -6
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair.egg-info/requires.txt +1 -4
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/LICENSE +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/README.md +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/setup.cfg +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/__init__.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/benchmark.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/dataconf.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/__init__.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/auxiliar.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/benchmark.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/inp.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/pos.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/pre.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/types.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/verifiers.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/__init__.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/dataconf.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/datagen.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/utils/verifiers.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/__init__.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair.egg-info/SOURCES.txt +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair.egg-info/dependency_links.txt +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair.egg-info/top_level.txt +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/tests/test_benchmark.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/tests/test_dataconf.py +0 -0
- {benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/tests/test_datagen.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BenchmarkDPFair
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A differentially private data synthesizer and fairness intervention benchmark framework
|
|
5
|
-
Author-email: Vinicius Gabriel Angelozzi Verona de Resende <verona.projects@tutanota.com>,
|
|
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
|
|
7
7
|
|
|
8
8
|
Copyright (c) 2025 Vinicius Gabriel Angelozzi Verona de Resende, Héber Hwang Arcolezi
|
|
@@ -45,12 +45,9 @@ Requires-Dist: smartnoise-synth>=1.0.5
|
|
|
45
45
|
Requires-Dist: tabulate>=0.9.0
|
|
46
46
|
Requires-Dist: ucimlrepo>=0.0.7
|
|
47
47
|
Requires-Dist: xgboost>=2.1.1
|
|
48
|
-
Requires-Dist: tensorflow>=2.19.0
|
|
49
|
-
Requires-Dist: tensorflow-io-gcs-filesystem>=0.37.1
|
|
50
48
|
Requires-Dist: cvxpy>=1.6.5
|
|
51
|
-
Requires-Dist: jax<0.5,>=0.4.30
|
|
52
|
-
Requires-Dist: jaxlib<0.5,>=0.4.30
|
|
53
49
|
Requires-Dist: chex>=0.1.87
|
|
50
|
+
Requires-Dist: BlackBoxAuditing==0.1.54
|
|
54
51
|
Dynamic: license-file
|
|
55
52
|
|
|
56
53
|
# DP+Fair Benchmarking Framework
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "BenchmarkDPFair"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.3"
|
|
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" },
|
|
11
|
-
{ name="
|
|
11
|
+
{ name="Héber Hwang Arcolezi", email="heber.hwang-arcolezi@etsmtl.ca" }
|
|
12
12
|
]
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
requires-python = ">=3.9,<3.13"
|
|
@@ -28,12 +28,9 @@ dependencies = [
|
|
|
28
28
|
"tabulate>=0.9.0",
|
|
29
29
|
"ucimlrepo>=0.0.7",
|
|
30
30
|
"xgboost>=2.1.1",
|
|
31
|
-
"tensorflow>=2.19.0",
|
|
32
|
-
"tensorflow-io-gcs-filesystem>=0.37.1",
|
|
33
31
|
"cvxpy>=1.6.5",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"chex>=0.1.87"
|
|
32
|
+
"chex>=0.1.87",
|
|
33
|
+
"BlackBoxAuditing==0.1.54"
|
|
37
34
|
|
|
38
35
|
]
|
|
39
36
|
license = { file = "LICENSE" }
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BenchmarkDPFair
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A differentially private data synthesizer and fairness intervention benchmark framework
|
|
5
|
-
Author-email: Vinicius Gabriel Angelozzi Verona de Resende <verona.projects@tutanota.com>,
|
|
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
|
|
7
7
|
|
|
8
8
|
Copyright (c) 2025 Vinicius Gabriel Angelozzi Verona de Resende, Héber Hwang Arcolezi
|
|
@@ -45,12 +45,9 @@ Requires-Dist: smartnoise-synth>=1.0.5
|
|
|
45
45
|
Requires-Dist: tabulate>=0.9.0
|
|
46
46
|
Requires-Dist: ucimlrepo>=0.0.7
|
|
47
47
|
Requires-Dist: xgboost>=2.1.1
|
|
48
|
-
Requires-Dist: tensorflow>=2.19.0
|
|
49
|
-
Requires-Dist: tensorflow-io-gcs-filesystem>=0.37.1
|
|
50
48
|
Requires-Dist: cvxpy>=1.6.5
|
|
51
|
-
Requires-Dist: jax<0.5,>=0.4.30
|
|
52
|
-
Requires-Dist: jaxlib<0.5,>=0.4.30
|
|
53
49
|
Requires-Dist: chex>=0.1.87
|
|
50
|
+
Requires-Dist: BlackBoxAuditing==0.1.54
|
|
54
51
|
Dynamic: license-file
|
|
55
52
|
|
|
56
53
|
# DP+Fair Benchmarking Framework
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/__init__.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/auxiliar.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/benchmark.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/types.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/Benchmark/utils/verifiers.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/__init__.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/dataconf.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/datagen.py
RENAMED
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair/DataGenerator/utils/verifiers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{benchmarkdpfair-0.2.2 → benchmarkdpfair-0.2.3}/src/BenchmarkDPFair.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|