An error that repeats in my Matlab code-image classification
Mostrar comentarios más antiguos
this error is repeating in my matlab image classification code. My verrsion of matlab is 2022a
and the error is as follows:
The class tf has no Constant property or Static method named 'placeholder'.
Error in all_in_one (line 68)
x = tf.placeholder('single', 'name', 'x');
Can you advise?
Respuestas (3)
Image Analyst
el 16 de En. de 2024
0 votos
What tf are you using? When I look in the help it lookos like there are lots of tf functions. It looks like you're trying to call some tensorflow function. I haven't done that but somehow you need to tell it to use tensorflow rather than the built-in tf functions.
2 comentarios
Atefeh
el 16 de En. de 2024
Image Analyst
el 16 de En. de 2024
What does this show in the command window?
whos tf
which -all tf
properties(tf)
methods(tf)
Atefeh
el 17 de En. de 2024
0 votos
1 comentario
Image Analyst
el 17 de En. de 2024
What does this show in the command window?
whos tf
which -all tf
properties(tf)
methods(tf)
Atefeh
el 19 de En. de 2024
0 votos
Categorías
Más información sobre Call Python from MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!