Matthijs Hollemans
Matthijs Hollemans
What line number and in which file does that error occur?
This sounds like you're using an incompatible version of Keras. Unfortunately, Keras changes a lot between one version and the next. Since this is a relatively old repo, I'd suggest...
Yup, needs Xcode 10.
Sounds like you're using an old version of Xcode. The current version of this project needs Xcode 10 or higher.
You should use Keras 1.2.2 with this repo.
Nope. In general, reshaping isn't necessary with Metal (although it depends on what you're trying to do). But even worse, it involves copying data so it's best avoided.
Did you click the run button? :smile: Are you trying to run one of the demo apps? You can't run Forge itself because that is a framework. What iPhone /...
The `exporters` tool only works for models from the 🤗 Transformers library. The first model you mentioned is a version of DistilBert from Transformers (has a config.json), but the second...
When you convert the model without specifying `--feature=...`, it uses the "default" task. That seems like what you'd want here, but this does not add the `token_type_ids` input to the...
Thanks for the report. Apparently the `pooler_output` output has an incorrect shape in the converted model. This is likely a bug in the exporter. As a workaround, you can try...