Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tensorflow.compat.v2.__internal__.tracking' has no attribute 'TrackableSaver' Error

I got this error after installing Tensorflow.js. Previously this program was working. Could it be a problem with the versions? I'm really curious as to what's causing it. Thanks in advance.

File ~\OneDrive\Masaüstü\Bitirme Proje\neural_network(sinir_ağları).py:61
    model = build_model()

  File ~\OneDrive\Masaüstü\Bitirme Proje\neural_network(sinir_ağları).py:29 in build_model
    model = keras.Sequential([

  File C:\ProgramData\Anaconda3\lib\site-packages\tensorflow\python\trackable\base.py:205 in _method_wrapper
    result = method(self, *args, **kwargs)

  File C:\ProgramData\Anaconda3\lib\site-packages\keras\utils\traceback_utils.py:67 in error_handler
    raise e.with_traceback(filtered_tb) from None

  File C:\ProgramData\Anaconda3\lib\site-packages\keras\engine\training.py:3331 in saver_with_op_caching
    return tf.__internal__.tracking.TrackableSaver(

AttributeError: module 'tensorflow.compat.v2.__internal__.tracking' has no attribute 'TrackableSaver'

I was planning to convert my model with Tensorflow.js and run it over the web. But when I installed Tensorflow.js I got this error in the program.

like image 261
faik mermer Avatar asked Nov 02 '25 16:11

faik mermer


1 Answers

Update keras with pip install 'keras>=2.9.0' for keras-team/keras@af70910.

-    self._trackable_saver = saver_with_op_caching(self)
+    self._checkpoint = tf.train.Checkpoint(root=weakref.ref(self))
like image 130
aaron Avatar answered Nov 04 '25 06:11

aaron



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!