coreml-DeepSeek-R1-Distill-Qwen-1.5B-4bit
This model was converted from deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B to CoreML using coremlpipelinestools.
Use with CoreMLPipelines
import CoreMLPipelines
let pipeline = try await TextGenerationPipeline(
modelName: "finnvoorhees/coreml-DeepSeek-R1-Distill-Qwen-1.5B-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
- 18
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
HF Inference API was unable to determine this model’s pipeline type.