20 using vector = std::vector<record>;
21 using map = std::map<std::string, record>;
24 record(
const std::string& sWord) : _word(sWord), _pos(part_of_speech::unknown) {}
32 std::ifstream in(oPath.string());
33 in.exceptions(std::ios::badbit | std::ios::failbit);
34 xtd::string sFile((std::istreambuf_iterator<char>(in)), (std::istreambuf_iterator<char>()));
35 for (
auto sBegin = sFile.begin(); sBegin < sFile.end(); ++sBegin) {
36 for (; (
'\r' == *sBegin ||
'\n' == *sBegin) && sBegin < sFile.end(); ++sBegin);
38 for (; (char)0xd7 != *sEnd && sEnd < sFile.end(); ++sEnd);
39 record r(std::string(sBegin, sEnd));
40 records.insert(std::make_pair(r._word, r));
41 for (++sEnd;
'\r' != *sEnd &&
'\n' != *sEnd && sEnd < sFile.end(); ++sEnd) {
42 part_of_speech iPOS = part_of_speech::unknown;
45 iPOS = part_of_speech::noun;
break;
47 iPOS = part_of_speech::noun_plural;
break;
49 iPOS = part_of_speech::noun_phrase;
break;
51 iPOS = part_of_speech::verb_participle;
break;
53 iPOS = part_of_speech::verb_transitive;
break;
55 iPOS = part_of_speech::verb_intransitive;
break;
57 iPOS = part_of_speech::adj;
break;
59 iPOS = part_of_speech::adv;
break;
61 iPOS = part_of_speech::conjunction;
break;
63 iPOS = part_of_speech::preposition;
break;
65 iPOS = part_of_speech::interjection;
break;
67 iPOS = part_of_speech::pronoun;
break;
69 iPOS = part_of_speech::definite_article;
break;
71 iPOS = part_of_speech::indefinite_article;
break;
73 iPOS = part_of_speech::nominative;
break;
75 r._pos =
static_cast<part_of_speech
>(
static_cast<uint64_t
>(iPOS) | static_cast<uint64_t>(r._pos));
86 nlp::part_of_speech get_pos(
const xtd::string& sWord)
const {
87 auto oItem = records.find(sWord);
88 if (records.end() == oItem)
return part_of_speech::unknown;
89 return oItem->second._pos;
host, target and build configurations and settings Various components are purpose built for specific ...
natural language processing
handle necessary filesystem and path functionality until C++17 is finalized