From @justinormont on May 2, 2018, 8:51 AM PDT
Line below on file machinelearning/test/Microsoft.ML.Tests/Scenarios/Scenario3_SentimentPrediction.cs
CharFeatureExtractor = new NGramNgramExtractor() { NgramLength = 2, AllLengths = true },
Currently: (trigrams & unichargrams+bichargrams)
CharFeatureExtractor=newNGramNgramExtractor(){NgramLength=2,AllLengths=true},WordFeatureExtractor=newNGramNgramExtractor(){NgramLength=3,AllLengths=false}Should be: (unigram+bigram & trichargrams)
CharFeatureExtractor=newNGramNgramExtractor(){NgramLength=3,AllLengths=false},WordFeatureExtractor=newNGramNgramExtractor(){NgramLength=2,AllLengths=true}
From @justinormont on May 2, 2018, 8:51 AM PDT
Line below on file
machinelearning/test/Microsoft.ML.Tests/Scenarios/Scenario3_SentimentPrediction.csCurrently: (trigrams & unichargrams+bichargrams)
Should be: (unigram+bigram & trichargrams)