zhongkaifu / Seq2SeqSharp

Seq2SeqSharp is a tensor based fast & flexible deep neural network framework written by .NET (C#). It has many highlighted features, such as automatic differentiation, different network types (Transformer, LSTM, BiLSTM and so on), multi-GPUs supported, cross-platforms (Windows, Linux, x86, x64, ARM), multimodal model for text and images and so on.
Other
193 stars 38 forks source link

Question on Named Entity Recognition #45

Closed swidz closed 2 years ago

swidz commented 2 years ago

Hi, Would it be possible to build a named entity recognition classifier using this project? I saw a 3yrs old post where you replied it was not possible and then a second one posted a year later where you informed that CRF was implemented.

I am looking for a .net core based tool for training and runing NER tasks.

Thank you in advance. Regards, Sebastian

zhongkaifu commented 2 years ago

Yes, Seq2SeqSharp can do it now. SeqLabelConsole is a command line tool for sequence labeling task (NER can be considered to a typical sequence labeling task). You can download the latest release package and it will show you how to train and test model for it.

swidz commented 2 years ago

Thank you