forked from 626_privacy/tensorflow_privacy
Add DummyOptimizer to top-level imports.
PiperOrigin-RevId: 242715034
This commit is contained in:
parent
3dc2b398d2
commit
e8113a0365
2 changed files with 11 additions and 4 deletions
10
privacy/BUILD
Normal file
10
privacy/BUILD
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
|
licenses(["notice"]) # Apache 2.0
|
||||||
|
|
||||||
|
exports_files(["LICENSE"])
|
||||||
|
|
||||||
|
py_library(
|
||||||
|
name = "privacy",
|
||||||
|
srcs = ["__init__.py"],
|
||||||
|
)
|
|
@ -13,10 +13,7 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
"""TensorFlow Privacy library."""
|
"""TensorFlow Privacy library."""
|
||||||
|
|
||||||
from __future__ import absolute_import
|
from privacy.analysis.privacy_ledger import DummyLedger
|
||||||
from __future__ import division
|
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
from privacy.analysis.privacy_ledger import GaussianSumQueryEntry
|
from privacy.analysis.privacy_ledger import GaussianSumQueryEntry
|
||||||
from privacy.analysis.privacy_ledger import PrivacyLedger
|
from privacy.analysis.privacy_ledger import PrivacyLedger
|
||||||
from privacy.analysis.privacy_ledger import QueryWithLedger
|
from privacy.analysis.privacy_ledger import QueryWithLedger
|
||||||
|
|
Loading…
Reference in a new issue