UKPLab / elmo-bilstm-cnn-crf

BiLSTM-CNN-CRF architecture for sequence tagging using ELMo representations.
Apache License 2.0
389 stars 81 forks source link

Does the code provide elmo pre-training for my own corpus???? #27

Closed songtaoshi closed 4 years ago

songtaoshi commented 4 years ago

How could I pre-train with my own corpus

nreimers commented 4 years ago

Hi, no, the code does not contain code to train your own ELMo embeddings.

See the AllenNLP framework how to train own ELMo embeddings. Once trained, you can use them with this code for sequence tagging.

songtaoshi commented 4 years ago

Thanks a lot!