Skip to content

Commit 8b460be

Browse files
authored
Import tensorflow.keras (tf_keras) when TF_USE_LEGACY_KERAS
1 parent 417e5b5 commit 8b460be

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

keras_tuner/backend/config.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import keras
15+
import os
1616

1717

18-
def _multi_backend():
18+
if os.environ.get("TF_USE_LEGACY_KERAS", None) in ("true", "True", "1"):
19+
from tensorflow as keras
20+
_MULTI_BACKEND = False
21+
else:
22+
import keras
1923
version_fn = getattr(keras, "version", None)
20-
return version_fn and version_fn().startswith("3.")
21-
22-
23-
_MULTI_BACKEND = _multi_backend()
24+
_MULTI_BACKEND = version_fn and version_fn().startswith("3.")
2425

2526

2627
def multi_backend():

0 commit comments

Comments
 (0)