Post

Replies

Boosts

Views

Activity

Reply to Tensorflow RNN-like neural network on Mac M1 does not work expectly
I tried the official version tensorflow of official website, it works as expected. conda install tensorflow Because the official version only support CPU, I suspect is the GPU problem of tensorflow-macos. Tried only use CPU on tensorflow-macos with with tf.device('/cpu:0'): It also work as expected. Suspect the bug of the GPU on tensorflow-macos cause it can't prosses RNN-like model.
Topic: Machine Learning & AI SubTopic: General Tags:
Feb ’23
Reply to Tensorflow on M1 Macbook Pro, error when model fit executes
Suspect not very fit with GPU, use CPU only with tf.config.set_visible_devices([], 'GPU') or with tf.device('/cpu:0'): solve the problem. It can prosess as expect.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to Tensorflow RNN-like neural network on Mac M1 does not work expectly
I tried the official version tensorflow of official website, it works as expected. conda install tensorflow Because the official version only support CPU, I suspect is the GPU problem of tensorflow-macos. Tried only use CPU on tensorflow-macos with with tf.device('/cpu:0'): It also work as expected. Suspect the bug of the GPU on tensorflow-macos cause it can't prosses RNN-like model.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’23