File size: 2,114 Bytes
21a09ed c15fa8c 21a09ed 3fd1efb ef56121 21a09ed 6f3ecec 21a09ed 6f3ecec 21a09ed 6f3ecec 21a09ed 42a49d7 21a09ed 6f3ecec 5941397 21a09ed 6f3ecec 21a09ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
---
library_name: coreml
license: apache-2.0
tags:
- text-generation
---
# Mistral-7B-Instruct-v0.3 + CoreML
> [!IMPORTANT]
> ❗ This repo requires the use of the macOS Sequoia (15) Developer Beta to utilize the latest and greatest CoreML has to offer!
> Sign up for the Apple Beta Software Program [here](https://beta.apple.com/en/) to get access.
> Check out the companion blog post to learn more about what's new in iOS 18 & macOS 15 [here](https://hf.co/blog/mistral-coreml).
This repo contains [Mistral 7B Instruct v0.3](https://huggingface.co./mistralai/Mistral-7B-Instruct-v0.3) converted to CoreML in both FP16 & Int4 precision.
Mistral-7B-Instruct-v0.3 is an instruct fine-tuned version of the Mistral-7B-v0.3 by Mistral AI.
Mistral-7B-v0.3 has the following changes compared to v0.2 model:
- Extended vocabulary to 32768
- Supports v3 Tokenizer
- Supports function calling
To learn more about the model, we recommend looking at its documentation and original model card
## Download
Install `huggingface-cli`
```bash
pip install -U "huggingface_hub[cli]"
```
To download one of the `.mlpackage` folders to the `models` directory:
```bash
huggingface-cli download \
--local-dir models \
--local-dir-use-symlinks False \
apple/mistral-coreml \
--include "StatefulMistral7BInstructInt4.mlpackage/*"
```
To download everything, remove the `--include` argument.
## Integrate in Swift apps
The [`huggingface/swift-chat`](https://github.com/huggingface/swift-chat) repository contains a demo app to get you up and running quickly!
You can integrate the model right into your Swift apps using the `preview` branch of [`huggingface/swift-transformers`](https://github.com/huggingface/swift-transformers/tree/preview)
## Limitations
The Mistral 7B Instruct model is a quick demonstration that the base model can be easily fine-tuned to achieve compelling performance.
It does not have any moderation mechanisms. We're looking forward to engaging with the community on ways to
make the model finely respect guardrails, allowing for deployment in environments requiring moderated outputs.
|