Closed kpacholak closed 1 year ago
Hi! Do you know, how can I get gpt2-large version? is it as simple as change model_name = "gpt2" to model_name = "gpt2-large" in Python converting script?
model_name = "gpt2"
model_name = "gpt2-large"
you should use this newer tool: https://huggingface.co/spaces/huggingface-projects/transformers-to-coreml
cc @pcuenca
Hi! Do you know, how can I get gpt2-large version? is it as simple as change
model_name = "gpt2"
tomodel_name = "gpt2-large"
in Python converting script?