Closed
Description
In colab, first pip install tf-keras
, then
import tf-keras as keras
dir(keras.backend) #No logsumexp
keras.backend.backend() #tensorflow
from keras import backend as K
K.logsumexp #AttributeError
import tensorflow as tf
tf.__version__ #2.15.0
keras.__version__ #2.15.1
No logsumexp
found, but still there is.
How to get this function?