Post

Replies

Boosts

Views

Activity

Reply to Apple Tensorflow Internal Error (0000000e:Internal Error)
I don't know "why" this happens but for me it only happens when I'm computing gradients against a loss tensor that is non-flat. Oddly, even with this error, my model still trained.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Sorting tf.float32 in Tensorflow
It should be noted that with tensorflow-metal 0.3.0 the behavior is even more bizarre. Instead of the tail of the list being filled with -0s, it is now filled with random values.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Sorting tf.float32 in Tensorflow
I can't seem to edit my question now but obviously, this issue is with Tensorflow 2.6, not 3.6 which doesn't exist yet.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to M1 GPU is extremely slow, how can I enable CPU to train my NNs?
An alternative to uninstalling tensorflow-metal is to disable GPU usage. This is a copy-paste from my other post... To disable the GPU completely on the M1 use tf.config.experimental.set_visible_devices([], 'GPU'). To disable the GPU for certain operations, use: with tf.device('/cpu:0'): # tf calls here
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to How can I only use CPU insteal of GPU on MBP M1 Pro?
To disable the GPU completely on the M1 use tf.config.experimental.set_visible_devices([], 'GPU'). To disable the GPU for certain operations, use: with tf.device('/cpu:0'): # tf calls here Someone else will have to answer the questions on RNNs and mlcompute.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’21