0 Pluspunkte 0 Minuspunkte

Ich versuche Gewichte von einem vortrainierten Model zu laden und bekomme die Fehlermeldung

AttributeError: 'Tensor' object has no attribute 'ndim'

weil diese als Tensoren gespeichert sind. Wie kann ich einen Tensor zu einem Numpy Array umwandeln?

von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit der Methode constant

import tensorflow as tf

a = tf.constant([[1, 2], [3, 4]]) # Tensor

a.numpy() # Numpy Array
von