You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Original issue 412 created by ClearTK on 2014-12-19T03:30:24.000Z:
What steps will reproduce the problem?
Run MalletCrfStringOutcomeClassifier.classify method on a list of list of features and observe the output instance after it is processed by the transducer's pipe.
What is the expected output?
All the list of features processed by the pipe are passed to the transducer.
What do you see instead?
The last feature in each list of features is interpreted as a class/target because the pipe.targetProcessing field is set to true (default) as for training. The end results is that this last feature is dropped and never sent to the transducer.
What version of the product are you using? On what operating system?
This is affecting the version 2.0 of cleartk-ml.
The main function in cc.mallet.fst.SimpleTagger
The text was updated successfully, but these errors were encountered:
My workaround, which could turn into a fix, is by adding: this.transducer.getInputPipe().setTargetProcessing(false);
right after reading the transducer in the classifier builder.
Original issue 412 created by ClearTK on 2014-12-19T03:30:24.000Z:
What steps will reproduce the problem?
Run MalletCrfStringOutcomeClassifier.classify method on a list of list of features and observe the output instance after it is processed by the transducer's pipe.
What is the expected output?
All the list of features processed by the pipe are passed to the transducer.
What do you see instead?
The last feature in each list of features is interpreted as a class/target because the pipe.targetProcessing field is set to true (default) as for training. The end results is that this last feature is dropped and never sent to the transducer.
What version of the product are you using? On what operating system?
This is affecting the version 2.0 of cleartk-ml.
The main function in cc.mallet.fst.SimpleTagger
The text was updated successfully, but these errors were encountered: