Migrate more references to dp_event to Google DP libraries.

PiperOrigin-RevId: 440230682
This commit is contained in:
A. Unique TensorFlower 2022-04-07 16:39:09 -07:00
parent 676945d3a6
commit 34f8774dad
2 changed files with 11 additions and 11 deletions

View file

@ -16,7 +16,6 @@ py_library(
deps = [
":version",
"//tensorflow_privacy/privacy/analysis:compute_dp_sgd_privacy_lib",
"//tensorflow_privacy/privacy/analysis:dp_event",
"//tensorflow_privacy/privacy/analysis:rdp_accountant",
"//tensorflow_privacy/privacy/analysis:tree_aggregation_accountant",
"//tensorflow_privacy/privacy/dp_query",
@ -38,6 +37,7 @@ py_library(
"//tensorflow_privacy/privacy/optimizers:dp_optimizer_keras",
"//tensorflow_privacy/privacy/optimizers:dp_optimizer_keras_vectorized",
"//tensorflow_privacy/v1:tensorflow_privacy_v1",
"@com_google_differential_py//python/dp_accounting:dp_event",
],
)

View file

@ -26,16 +26,16 @@ else:
from tensorflow_privacy import v1
# DpEvents
from tensorflow_privacy.privacy.analysis.dp_event import DpEvent
from tensorflow_privacy.privacy.analysis.dp_event import NoOpDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import NonPrivateDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import UnsupportedDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import GaussianDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import SelfComposedDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import ComposedDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import PoissonSampledDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import SampledWithReplacementDpEvent
from tensorflow_privacy.privacy.analysis.dp_event import SampledWithoutReplacementDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import DpEvent
from com_google_differential_py.python.dp_accounting.dp_event import NoOpDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import NonPrivateDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import UnsupportedDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import GaussianDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import SelfComposedDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import ComposedDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import PoissonSampledDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import SampledWithReplacementDpEvent
from com_google_differential_py.python.dp_accounting.dp_event import SampledWithoutReplacementDpEvent
# Analysis
from tensorflow_privacy.privacy.analysis.compute_dp_sgd_privacy_lib import compute_dp_sgd_privacy