-
-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cannot find 'yolov8m #9
Comments
@pascal-maker hello! It looks like you're encountering an issue with integrating a YOLOv8 model into an iOS project. Here are a few steps to troubleshoot and potentially resolve your issue:
If you continue to face issues, please provide more details about the steps you've taken and any specific error messages you're seeing. The more information you provide, the better we can assist you. 😊 Remember, the YOLO community and the Ultralytics team are here to help. Good luck with your project! |
The mlprogram model format, deployable to iOS15, macOS12, watchOS8, tvOS15, and newer versions |
@tonychanchen YOLO on CoreML uses *.mlpackage models by default, though you might be able to experiment with other types: Remember, integrating advanced ML models into mobile and other platforms can be complex, and issues like these are not uncommon. Your persistence is key, and the community is here to support you. Keep experimenting, and don't hesitate to reach out with more details or questions. Good luck! 🚀 |
Tried running the project after adding the models to the project and received these errors :
/Volumes/Extreme SSD/yolo-ios-app/YOLO/ViewController.swift:20:20: error: cannot find 'yolov8m' in scope
var mlModel = try! yolov8m(configuration: .init()).model
^~~~~~~
/Volumes/Extreme SSD/yolo-ios-app/YOLO/ViewController.swift:20:44: error: cannot infer contextual base in reference to member 'init'
var mlModel = try! yolov8m(configuration: .init()).model. Any possibility to also run this on the iOS simulator?
The text was updated successfully, but these errors were encountered: