Since #17 we have we have two places where feature specification is stored in the TableRowClassifier:
self.feature_specification is a string separated list of features
self._ordered_feature_names is a list with the same content, but split by spaces
All other classifiers have feature_specification, so we may potentially reduce the code to only this.
Since #17 we have we have two places where feature specification is stored in the
TableRowClassifier:self.feature_specificationis a string separated list of featuresself._ordered_feature_namesis a list with the same content, but split by spacesAll other classifiers have
feature_specification, so we may potentially reduce the code to only this.