Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

To all those who have had experience with using the crf++ toolkit (refer: http://crfpp.sourceforge.net/)

Please find the error message which pops up on trying to execute the CRF++ training program:

CRF++: Yet Another CRF Tool Kit
Copyright (C) 2005-2009 Taku Kudo, All rights reserved.

encoder.cpp(280) [feature_index.open(templfile, trainfile)] feature_index.cpp(86)     [max_size == size] inconsistent column size: 21 20 train.data

I'm not sure how to interpret the error message. There are 20 features in my training file and the 21st token is the class value. I have created the Crf++ template file as per the instructions on the site.

share|improve this question

2 Answers

It looks like a training data format issue, make sure the number of columns are consistent across all sentences.

share|improve this answer
Yeah, that's what it was. Thank you. – leba-lev Dec 5 '11 at 21:46

Some points to check: 1. Check if you have a new line after each sentence 2. Check if your columnar values does not contain any sp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.