Popularity
1.8
Growing
Activity
0.0
Stable
43
4
16
Programming language: Jupyter Notebook
License: MIT License
Tags:
Machine Learning
CoreML-samples alternatives and similar libraries
Based on the "Machine Learning" category.
Alternatively, view CoreML-samples alternatives based on common mentions on social networks and blogs.
-
Awesome-Mobile-Machine-Learning
DISCONTINUED. A curated list of awesome mobile machine learning resources for iOS, Android, and edge devices. -
AIToolbox
A toolbox of AI modules written in Swift: Graphs/Trees, Support Vector Machines, Neural Networks, PCA, K-Means, Genetic Algorithms -
Swift-Brain
Artificial intelligence/machine learning data structures and Swift algorithms for future iOS development. bayes theorem, neural networks, and more AI. -
TensorSwift
A lightweight library to calculate tensors in Swift, which has similar APIs to TensorFlow's -
DL4S
Accelerated tensor operations and dynamic neural networks based on reverse mode automatic differentiation for every device that can run Swift - from watchOS to Linux
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of CoreML-samples or a related project?
README
CoreML-samples
This is the sample code for Core ML using ResNet50 provided by Apple.
ResNet50 can categorize the input image to 1000 pre-trained categories.
What's more, this includes a sample code for coremltools converting keras model to mlmodel.
Source Code for the prediction
guard let image = imageView.image, let ref = image.buffer() else {
return
}
do {
// predict
let output = try model.prediction(image: ref)
print(output.classLabel)
print(output.classLabelProbs)
} catch {
print(error)
}