From 38f4fab05316183a010615073995d42fd43641b0 Mon Sep 17 00:00:00 2001 From: Raffi Khatchadourian Date: Thu, 1 Aug 2024 16:00:19 -0400 Subject: [PATCH] Fix Keras import error. Keras has now been integrated into TensorFlow. --- custom/layers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/layers.py b/custom/layers.py index 1506671..8f4b000 100644 --- a/custom/layers.py +++ b/custom/layers.py @@ -1,6 +1,6 @@ import tensorflow as tf import math as m -from tensorflow.python import keras +from tensorflow import keras import numpy as np import math