Blame view

src/tree/build-tree-questions.cc 4.55 KB
8dcb6dfcb   Yannick Estève   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  // tree/build-tree-questions.cc
  
  // Copyright 2009-2011  Microsoft Corporation
  
  // See ../../COPYING for clarification regarding multiple authors
  //
  // Licensed under the Apache License, Version 2.0 (the "License");
  // you may not use this file except in compliance with the License.
  // You may obtain a copy of the License at
  //
  //  http://www.apache.org/licenses/LICENSE-2.0
  //
  // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  // MERCHANTABLITY OR NON-INFRINGEMENT.
  // See the Apache 2 License for the specific language governing permissions and
  // limitations under the License.
  
  #include "base/kaldi-math.h"
  #include "util/stl-utils.h"
  #include "tree/build-tree-questions.h"
  #include "tree/build-tree-utils.h"
  
  namespace kaldi {
  
  void QuestionsForKey::Write(std::ostream &os, bool binary) const {
    WriteToken(os, binary, "<QuestionsForKey>");
    int32 size = initial_questions.size();
    WriteBasicType(os, binary, size);
    for (int32 i = 0; i < size; i++)
      WriteIntegerVector(os, binary, initial_questions[i]);
    refine_opts.Write(os, binary);
    WriteToken(os, binary, "</QuestionsForKey>");
  }
  
  void QuestionsForKey::Read(std::istream &is, bool binary) {
    int32 size;
    ExpectToken(is, binary, "<QuestionsForKey>");
    ReadBasicType(is, binary, &size);
    initial_questions.resize(size);
    for (int32 i = 0; i < size; i++)
      ReadIntegerVector(is, binary, &(initial_questions[i]));
    refine_opts.Read(is, binary);
    ExpectToken(is, binary, "</QuestionsForKey>");
  }
  
  void Questions::Write(std::ostream &os, bool binary) const {
    WriteToken(os, binary, "<Questions>");
  
    std::vector<EventKeyType> keys_with_options;
    this->GetKeysWithQuestions(&keys_with_options);
    for (size_t i = 0; i < keys_with_options.size(); i++) {
      EventKeyType key = keys_with_options[i];
      WriteToken(os, binary, "<Key>");
      WriteBasicType(os, binary, key);
      const QuestionsForKey &opts = GetQuestionsOf(key);
      opts.Write(os, binary);
    }
    WriteToken(os, binary, "</Questions>");
  }
  
  void Questions::Read(std::istream &is, bool binary) {
    // First, clear anything present.
    DeletePointers(&key_options_);
    key_options_.clear();
    key_idx_.clear();
  
    ExpectToken(is, binary, "<Questions>");
  
    std::vector<EventKeyType> keys_with_options;
  
    while (1) {
      std::string token;
      ReadToken(is, binary, &token);
      if (token == "</Questions>") return;
      else {
        if (token != "<Key>")
          KALDI_ERR << "Questions::Read, expecting <Key>, got "<<token;
        EventKeyType key;
        ReadBasicType(is, binary, &key);
        QuestionsForKey opts;
        opts.Read(is, binary);
        SetQuestionsOf(key, opts);
      }
    }
  }
  
  void Questions::InitRand(const BuildTreeStatsType &stats, int32 num_quest, int32 num_iters_refine,
                                  AllKeysType all_keys_type) {
    std::vector<EventKeyType> all_keys;
    FindAllKeys(stats, all_keys_type, &all_keys);  // get all keys.
    if (all_keys_type == kAllKeysUnion) {
      KALDI_WARN << "Questions::InitRand(), using union of all keys.  This may work depending on how you are building the tree but may crash (depends if you have already ensured that stats currently on the same leaf all share the same set of keys.)";
    }
  
    for (size_t i = 0;i < all_keys.size();i++) {
      EventKeyType key = all_keys[i];
      std::vector<EventValueType> all_values;
      bool b = PossibleValues(key, stats, &all_values);  // get possible values.
      if (all_keys_type != kAllKeysUnion) KALDI_ASSERT(b);
      KALDI_ASSERT(all_values.size() != 0);  // since key exists in stats, must have some value defined.
      QuestionsForKey q_for_key;
      q_for_key.refine_opts.num_iters = num_iters_refine;
      q_for_key.initial_questions.clear();  // Make sure empty.
      if (all_values.size() == 1) {  // can have no meaningful questions because only 1 possible value.   use empty set of questions.
        ;  // Do nothing.  No questions.
      } else {
        q_for_key.initial_questions.resize((size_t)num_quest);
        for (size_t i = 0;i < (size_t)num_quest;i++) {
          std::vector<EventValueType> &this_quest = q_for_key.initial_questions[i];
          for (size_t j = 0;j < all_values.size()/2;j++)
            this_quest.push_back(all_values[RandInt(0, all_values.size()-1)]);
          SortAndUniq(&this_quest);
          KALDI_ASSERT(!this_quest.empty());
        }
        SortAndUniq(&q_for_key.initial_questions);  // Ensure unique questions.
      }
      q_for_key.Check();
      SetQuestionsOf(key, q_for_key);
    }
  }
  
  
  
  } // end namespace kaldi