Sharp / README.md
LucaLangella's picture
Upload README.md with huggingface_hub
9ecc46e verified
metadata
license: mit
tags:
  - coreml
  - image-classification
  - crack-detection
  - ios
  - visionos

Sharp — Crack Detection CoreML Model

A compiled CoreML model (.mlmodelc) for detecting cracks in surfaces, built for Apple platforms (iOS, visionOS).

Download

Download sharp.mlmodelc.zip from the Files tab above, then unzip it:

unzip sharp.mlmodelc.zip

Or via the CLI:

pip install huggingface_hub
huggingface-cli download LucaLangella/Sharp sharp.mlmodelc.zip
unzip sharp.mlmodelc.zip

Or in Python:

from huggingface_hub import hf_hub_download

path = hf_hub_download(repo_id="LucaLangella/Sharp", filename="sharp.mlmodelc.zip")

Usage

Add the unzipped sharp.mlmodelc folder to your Xcode project and load it with Core ML:

let model = try sharp(configuration: MLModelConfiguration())

License

MIT