// 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, ""); 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, ""); } void QuestionsForKey::Read(std::istream &is, bool binary) { int32 size; ExpectToken(is, binary, ""); 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, ""); } void Questions::Write(std::ostream &os, bool binary) const { WriteToken(os, binary, ""); std::vector 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, ""); WriteBasicType(os, binary, key); const QuestionsForKey &opts = GetQuestionsOf(key); opts.Write(os, binary); } WriteToken(os, binary, ""); } void Questions::Read(std::istream &is, bool binary) { // First, clear anything present. DeletePointers(&key_options_); key_options_.clear(); key_idx_.clear(); ExpectToken(is, binary, ""); std::vector keys_with_options; while (1) { std::string token; ReadToken(is, binary, &token); if (token == "") return; else { if (token != "") KALDI_ERR << "Questions::Read, expecting , got "< 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 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 &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