XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pos.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <xtd/xtd.hpp>
9 
10 #include <algorithm>
11 #include <vector>
12 #include <map>
13 
14 #include <xtd/meta.hpp>
15 #include <xtd/string.hpp>
16 
17 #include <xtd/nlp/nlp.hpp>
18 #include <xtd/dynamic_object.hpp>
19 
20 #include <xtd/nlp/moby.hpp>
21 
22 
23 namespace xtd{
24  namespace nlp{
25 
26  class pos_tagger{
27  public:
28 
29  struct tagged_word {
30  part_of_speech _pos;
31  xtd::string _word;
32  };
33 
34  static void tag_doc(xtd::dynamic_object::vector& oDoc) {
35  using doc_type = xtd::dynamic_object::vector;
36  auto & oMoby = moby::database::get();
37  forever{
38  auto oItem = std::find_if(oDoc.begin(), oDoc.end(), [](const xtd::dynamic_object& obj) { return obj.has_item<xtd::nlp::raw_text>(); });
39  if (oDoc.end() == oItem) break;
40  auto sRawText = oItem->item<raw_text>();
41  auto iPOS = moby::database::get().get_pos(sRawText);
42  DUMP(iPOS);
43  oItem->item<tagged_word>() = tagged_word{ iPOS, sRawText };
44  oItem->remove_item<raw_text>();
45  }
46  }
47 
48  pos_tagger() = default;
49 
50  };
51  }
52 }
53 
54 
template meta-programming utilities
c++ interface to moby databases
specializations of std::basic_string for advanced and common string handling
host, target and build configurations and settings Various components are purpose built for specific ...
natural language processing
an object with dynamic properties and values.