kev-0.5b-fp32 · Swev

A Core ML export of jaredpalmer/kev-0.5b for Swev, a Swift package for local typed decisions. Returns choices, ordinal scores, and probabilities for runtime-defined questions; this export does not generate free-form text.

  • Package: kev-0.5b-fp32-swev-l4096-k16.mlpackage (download the entire directory).
  • Precision: FP32 weights and computation.
  • Text context: up to 4,096 tokens including the question, options, and formatting. Swev selects the smallest fitting bucket: 128, 256, 512, 1,024, 2,048, or 4,096.
  • Questions: choice, score, and noul; up to 16 answer options per question and 64 questions per request, evaluated independently.
  • Runtime: Swift 6, macOS 15+ or iOS 18+, with a Swev version supporting schema 2.0. Export version 0.3.0. Validated locally on macOS with CPU-only Core ML; memory and compute-unit support depend on the device.

Text-only export. Per-field prompt limits also apply; oversized inputs are rejected rather than silently truncated.

Swift usage

Add Swev as a Swift package dependency, then:

import Swev

let model = try await SwevModel.load(from: HuggingFaceModel(
    repository: "danielamitay/kev-0.5b-fp32-swev",
    package: "kev-0.5b-fp32-swev-l4096-k16.mlpackage"
))
let response = try await model.predict(
    state: "apple",
    questions: [.noul(id: "edible", instructions: "Is this an edible food?")]
)
print(try response.noul("edible").noul)

The first call downloads the package; later calls reuse Swev’s local download cache. Keep the loaded model resident to avoid recompilation and initialization on each request. See loading and caching and model support. No Python runtime or separate tokenizer/adapter files are required.

Source and conversion

Source checkpoint: jaredpalmer/kev-0.5b at 504b7c67d088. Tokenizer, formatting, and inference settings are bundled in the package. This is a converted export, not a new fine-tune.

The source adapter and decision head are merged with Qwen/Qwen2.5-0.5B. The source inference implementation is Kev. The export exposes a sixteen-option decision head and bucketed text shapes.

Conversion tooling and the package contract are documented in Swev’s conversion guide and schema reference. Exported capacity is not a guarantee of task accuracy; evaluate the checkpoint on your own inputs.

License

Apache License 2.0; see LICENSE. Source model attribution and pinned revisions are listed above. This is an independent Swev-compatible export, not an official release by the original model authors.

Downloads last month
5
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for danielamitay/kev-0.5b-fp32-swev

Quantized
(1)
this model

Collection including danielamitay/kev-0.5b-fp32-swev