Post

Replies

Boosts

Views

Activity

Reply to Symbol not found for tensorflow
I'm having the same problem. MBP 2019 AMD Radeon Pro 5500M 8GB. I checked all of the following combinations, and none works: tensorflow-macos==2.12.0 tensorflow-metal==0.8.0 tensorflow==2.12.0 tensorflow-metal==0.8.0 tensorflow-macos==2.12.0 tensorflow-metal==1.0.0 tensorflow==2.13.0 tensorflow-metal==1.0.0 as described here https://pypi.org/project/tensorflow-metal/
Topic: Machine Learning & AI SubTopic: General Tags:
Feb ’24
Reply to NLModel won't initialize in MessageFilterExtension
I'm experiencing something similar. I trained model using Create ML using French embeddings (polish not available). Application reports couple of errors: MA-auto{_failedLockContent} | failure reported by server | error:[com.apple.MobileAssetError.AutoAsset:6503] Unable to locate Asset for contextual word embedding model for local fr. It can be reproduced using: if NLEmbedding.wordEmbedding(for: .french) == nil { print("EMBEDINGS NOT FOUND") } else { print("EMBEDINGS EXISTS") } The server error also happens for polish language when I'm using alternative algorithm for which polish embeddings are available.
Topic: Machine Learning & AI SubTopic: General Tags:
Dec ’24
Reply to Padding Issue in SwiftUI Widgets
I’m experiencing a similar problem. Including a ProgressView in the widget causes some artifacts. This can be fixed by applying a frame with a fixed height: ProgressView(value: context.state.progress) .frame(height: 8) // Fixed height for consistent layout .padding(.bottom, 8) However, the layout falls apart when an Image is added. The Image alone is not an issue, but I can’t include both without disrupting the layout.
Topic: Programming Languages SubTopic: Swift Tags:
Jan ’25