huggingface / exporters

Export Hugging Face models to Core ML and TensorFlow Lite
Apache License 2.0
572 stars 35 forks source link

`trust_remote_code=True` #40

Closed Fihade closed 1 year ago

Fihade commented 1 year ago

I'm doing exporters with convert tiiuae/falcon-7b-instruct to CoreML Model. python -m exporters.coreml --model=tiiuae/falcon-7b-instruct exported/

it shows some error to fix it: image

pcuenca commented 1 year ago

Hi @Fihade,

The model is not integrated in transformers yet (it requires some custom code to run) so it's still not available in exporters. However, there's a converted Core ML version in the repo that you can test.

Fihade commented 1 year ago

Okay, I'm doing this Core ML model in testing. Thanks @pcuenca