coreml-Qwen2.5-3B-Instruct-4bit

This model was converted from Qwen/Qwen2.5-3B-Instruct to CoreML using coremlpipelinestools.

Use with CoreMLPipelines

import CoreMLPipelines

let pipeline = try await TextGenerationPipeline(
    modelName: "finnvoorhees/coreml-Qwen2.5-3B-Instruct-4bit"
)
let stream = pipeline(
    messages: [[
        "role": "user",
        "content": "Write a poem about Ireland"
    ]]
)
for try await text in stream {
    print(text, terminator: "")
    fflush(stdout)
}
print("")
Downloads last month
12
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the HF Inference API does not support coreml models with pipeline type text-generation

Collection including finnvoorhees/coreml-Qwen2.5-3B-Instruct-4bit