HomeSort by relevance Sort by last modified time
    Searched refs:chargram_orders (Results 1 - 6 of 6) sorted by null

  /external/libtextclassifier/utils/
token-feature-extractor.cc 206 result.reserve(options_.chargram_orders.size() * feature_word.size());
208 if (options_.chargram_orders.empty()) {
212 for (int chargram_order : options_.chargram_orders) {
270 result.reserve(options_.chargram_orders.size() * feature_word.size());
272 if (options_.chargram_orders.empty()) {
276 for (int chargram_order : options_.chargram_orders) {
token-feature-extractor_test.cc 40 options.chargram_orders = std::vector<int>{1, 2, 3};
110 options.chargram_orders = std::vector<int>{};
139 options.chargram_orders = std::vector<int>{1, 2, 3};
209 options.chargram_orders = std::vector<int>{};
240 options.chargram_orders = std::vector<int>{1, 2};
275 options.chargram_orders = std::vector<int>{1, 2};
299 options.chargram_orders = std::vector<int>{1, 2};
323 options.chargram_orders = std::vector<int>{1, 2};
347 options.chargram_orders = std::vector<int>{1, 2};
367 options.chargram_orders = std::vector<int>{1, 2}
    [all...]
token-feature-extractor.h 36 std::vector<int> chargram_orders; member in struct:libtextclassifier3::TokenFeatureExtractorOptions
  /external/libtextclassifier/actions/
feature-processor.cc 25 if (options->chargram_orders() != nullptr) {
26 for (int order : *options->chargram_orders()) {
27 extractor_options.chargram_orders.push_back(order);
actions-suggestions_test.cc     [all...]
  /external/libtextclassifier/annotator/
feature-processor.cc 59 if (options->chargram_orders() != nullptr) {
60 for (int order : *options->chargram_orders()) {
61 extractor_options.chargram_orders.push_back(order);

Completed in 105 milliseconds