Sha256: b86d14703f035bd57b496c34316e57eac6c650a0fceef47355f7d092b0d4bfc5
Contents?: true
Size: 699 Bytes
Versions: 3
Compression:
Stored size: 699 Bytes
Contents
#include "src/KeywordExtractor.hpp" #include "gtest/gtest.h" using namespace CppJieba; TEST(KeywordExtractorTest, Test1) { KeywordExtractor extractor("../dict/extra_dict/jieba.dict.small.utf8", "../dict/hmm_model.utf8", "../dict/idf.utf8", "../dict/stop_words.utf8"); string s("我是拖拉机学院手扶拖拉机专业的。不用多久,我就会升职加薪,当上CEO,走上人生巅峰。"); string res; vector<pair<string, double> > wordweights; size_t topN = 5; extractor.extract(s, wordweights, topN); res << wordweights; ASSERT_EQ(res, "[\"CEO:11.7392\", \"升职:10.8562\", \"加薪:10.6426\", \"手扶拖拉机:10.0089\", \"巅峰:9.49396\"]"); }
Version data entries
3 entries across 3 versions & 1 rubygems