studio-ousia / luke

LUKE -- Language Understanding with Knowledge-based Embeddings
Apache License 2.0
705 stars 101 forks source link

Script from huggingface to allennlp model #159

Closed luffycodes closed 2 years ago

luffycodes commented 2 years ago

Hello,

Is there a script to convert a luke huggingface model to allennlp model since finetuning scripts are in allennlp.

Any leads are welcome :)

ryokan0123 commented 2 years ago

We are integrating the huggingface LUKE models into allennlp through this class. examples/utils/embedders/transformers_luke_embedder.py

This embedder class is used throughout the downstream allennlp models in this repo. You can specify the pretrained model name in the model_name.

luffycodes commented 2 years ago

Thanks :)