我正在研究 NER 应用程序,其中我有以下数据格式的数据注释。
[('The F15 aircraft uses a lot of fuel', {'entities': [(4, 7, 'aircraft')]}),
('did you see the F16 landing?', {'entities': [(16, 19, 'aircraft')]}),
('how many missiles can a F35 carry', {'entities': [(24, 27, 'aircraft')]}),
('is the F15 outdated', {'entities': [(7, 10, 'aircraft')]}),
('how long does it take to train a F16 pilot',{'entities': [(33, 36, 'aircraft')]}),
('how much does a F35 cost', {'entities': [(16, 19, 'aircraft')]})]
有没有办法将其转换为 CONLL 2003 格式?