2019-07-16 08:33:57 -06:00
|
|
|
# Copyright 2019, The TensorFlow Privacy Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2019-07-30 13:12:22 -06:00
|
|
|
"""BoltOn Method for privacy."""
|
2019-06-05 15:06:02 -06:00
|
|
|
import sys
|
|
|
|
from distutils.version import LooseVersion
|
|
|
|
import tensorflow as tf
|
|
|
|
|
2019-07-25 10:13:32 -06:00
|
|
|
if LooseVersion(tf.__version__) < LooseVersion("2.0.0"):
|
2019-07-18 13:04:35 -06:00
|
|
|
raise ImportError("Please upgrade your version "
|
|
|
|
"of tensorflow from: {0} to at least 2.0.0 to "
|
|
|
|
"use privacy/bolton".format(LooseVersion(tf.__version__)))
|
2019-07-25 09:37:54 -06:00
|
|
|
if hasattr(sys, "skip_tf_privacy_import"): # Useful for standalone scripts.
|
2019-06-05 15:06:02 -06:00
|
|
|
pass
|
|
|
|
else:
|
2019-07-30 13:12:22 -06:00
|
|
|
from privacy.bolton.models import BoltOnModel # pylint: disable=g-import-not-at-top
|
|
|
|
from privacy.bolton.optimizers import BoltOn # pylint: disable=g-import-not-at-top
|
2019-07-29 16:33:30 -06:00
|
|
|
from privacy.bolton.losses import StrongConvexHuber # pylint: disable=g-import-not-at-top
|
|
|
|
from privacy.bolton.losses import StrongConvexBinaryCrossentropy # pylint: disable=g-import-not-at-top
|