We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab824ac commit 473ef32Copy full SHA for 473ef32
src/nncf/tensorflow/__init__.py
@@ -12,6 +12,7 @@
12
Base subpackage for NNCF TensorFlow functionality.
13
"""
14
15
+from nncf.common.deprecation import warning_deprecated
16
import tensorflow
17
from packaging import version
18
from packaging.specifiers import SpecifierSet
@@ -54,3 +55,7 @@
54
55
from nncf.tensorflow.sparsity.magnitude import algorithm as magnitude_sparsity_algorithm
56
from nncf.tensorflow.sparsity.rb import algorithm as rb_sparsity_algorithm
57
from nncf.tensorflow.utils.state import ConfigState
58
+
59
+warning_deprecated(
60
+ "The TensorFlow backend is deprecated and will be removed in a future release."
61
+)
0 commit comments