CoolFace
Modelpublic

mlboydaisuke/Nitro-E-CoreML

sourceHugging Faceotherupdated 1mo agoView on Hugging Face
0likes19downloads
Model Card

Nitro-E (4-Step) — Core ML

AMD, 2025

AMD's 304M E-MMDiT text-to-image model (Oct 2025). 4-step distilled variant, 512×512. Llama 3.2 1B text encoder + E-MMDiT denoiser + DC-AE VAE decoder. ~1.04 GB bundled after INT4/INT8 palettization. ~2–3 s / image on iPhone 15+.

<p><img src="https://huggingface.co/mlboydaisuke/Nitro-E-CoreML/resolve/main/media/595b2fd081.png" alt="Nitro-E (4-Step) demo"></p>

Core ML conversion of amd/Nitro-E for on-device inference on iPhone, iPad and Mac. Converted with coremltools; the packages are stateless, so all sequencing and buffering lives in your Swift code.

Tasktext to image
Upstreamamd/Nitro-E
Packages3
Download size987 MB
Minimum iOS18.0
Peak RAM~2500 MB

Files

FileSizeCompute unitsSHA-256
NitroE_TextEncoder.mlpackage.zip545 MBcpuAndNeuralEngine9b366b29d790ab98…
NitroE_EMMDiT.mlpackage.zip283 MBcpuAndNeuralEngine93a7ed971c5c419d…
NitroE_VAEDecoder.mlpackage.zip153 MBcpuAndNeuralEngine4837023736d82b49…
Llama3Vocab.json2 MB-f8f40517934d6f5d…
Llama3Merges.txt3 MB-0cd100e0ab7dbd83…
Total987 MB

compute_units is not a suggestion -- it is the configuration the conversion was verified against. Moving a package to a different compute unit can silently change the numerics (FP16 attention overflow) or crash on the GPU.

Download

bash
hf download mlboydaisuke/coreml-zoo --include "nitroe/*" --local-dir ./nitroe
unzip './nitroe/nitroe/*.zip' -d ./nitroe

Use in Swift

swift
import CoreML

let config = MLModelConfiguration()
config.computeUnits = .cpuAndNeuralEngine   // as converted — see the table above

// Unzip the .mlpackage, drop it into your Xcode target and Xcode compiles it
// at build time:
let model = try NitroE_TextEncoder(configuration: config)

// ...or compile a downloaded .mlpackage at runtime:
let compiled = try await MLModel.compileModel(at: mlpackageURL)
let model = try MLModel(contentsOf: compiled, configuration: config)
This model is split into 3 Core ML packages that are driven in sequence from Swift. Load them one at a time, copy the outputs out of the MLMultiArray buffers and release each model before loading the next — two large Core ML models resident at once will OOM on an iPhone.

Demo

  • Sample app`sample_apps/NitroEDemo`, a standalone SwiftUI project.
  • Models Zoo — this model is downloadable and runnable inside the Models Zoo app on the App Store, no build required.

Conversion

License

The conversion inherits the upstream license: MIT (Nitro-E) + Llama 3.2 Community License (text encoder). See https://huggingface.co/amd/Nitro-E.

Nitro-E itself is MIT; the bundled text encoder is Llama 3.2 and carries the Llama 3.2 Community License.

Credits

  • Upstream authors: amd/Nitro-E, 2025
  • Core ML conversion: john-rocky (Daisuke Majima)

<!-- funnel:v1 -->


More models in this format: Core ML Model Zoo — 46 models, each with the recipe that produced it.

Want a different model on-device? Open a request — free, open weights only; the export and its measured numbers get published publicly.

<!-- /funnel:v1 -->