decoder_utils.h 3.0 KB
Newer Older
1 2 3
#ifndef DECODER_UTILS_H_
#define DECODER_UTILS_H_

Y
Yibing Liu 已提交
4
#include <utility>
5
#include "fst/log.h"
Y
Yibing Liu 已提交
6
#include "path_trie.h"
Y
Yibing Liu 已提交
7

Y
Yibing Liu 已提交
8 9 10
const float NUM_FLT_INF = std::numeric_limits<float>::max();
const float NUM_FLT_MIN = std::numeric_limits<float>::min();

11 12 13 14 15 16
// inline function for validation check
inline void check(
    bool x, const char *expr, const char *file, int line, const char *err) {
  if (!x) {
    std::cout << "[" << file << ":" << line << "] ";
    LOG(FATAL) << "\"" << expr << "\" check failed. " << err;
Y
Yibing Liu 已提交
17
  }
18 19 20 21 22 23 24
}

#define VALID_CHECK(x, info) \
  check(static_cast<bool>(x), #x, __FILE__, __LINE__, info)
#define VALID_CHECK_EQ(x, y, info) VALID_CHECK((x) == (y), info)
#define VALID_CHECK_GT(x, y, info) VALID_CHECK((x) > (y), info)
#define VALID_CHECK_LT(x, y, info) VALID_CHECK((x) < (y), info)
Y
Yibing Liu 已提交
25 26


27
// Function template for comparing two pairs
Y
Yibing Liu 已提交
28
template <typename T1, typename T2>
Y
Yibing Liu 已提交
29
bool pair_comp_first_rev(const std::pair<T1, T2> &a,
Y
Yibing Liu 已提交
30 31
                         const std::pair<T1, T2> &b) {
  return a.first > b.first;
32
}
Y
Yibing Liu 已提交
33

Y
Yibing Liu 已提交
34
// Function template for comparing two pairs
Y
Yibing Liu 已提交
35
template <typename T1, typename T2>
Y
Yibing Liu 已提交
36
bool pair_comp_second_rev(const std::pair<T1, T2> &a,
Y
Yibing Liu 已提交
37 38
                          const std::pair<T1, T2> &b) {
  return a.second > b.second;
39 40
}

Y
Yibing Liu 已提交
41
// Return the sum of two probabilities in log scale
42
template <typename T>
Y
Yibing Liu 已提交
43 44 45 46 47 48
T log_sum_exp(const T &x, const T &y) {
  static T num_min = -std::numeric_limits<T>::max();
  if (x <= num_min) return y;
  if (y <= num_min) return x;
  T xmax = std::max(x, y);
  return std::log(std::exp(x - xmax) + std::exp(y - xmax)) + xmax;
49 50
}

51 52 53 54 55 56 57 58 59 60 61 62
// Get pruned probability vector for each time step's beam search
std::vector<std::pair<size_t, float>> get_pruned_log_probs(
    const std::vector<double> &prob_step,
    double cutoff_prob,
    size_t cutoff_top_n);

// Get beam search result from prefixes in trie tree
std::vector<std::pair<double, std::string>> get_beam_search_result(
    const std::vector<PathTrie *> &prefixes,
    const std::vector<std::string> &vocabulary,
    size_t beam_size);

Y
Yibing Liu 已提交
63
// Functor for prefix comparsion
Y
Yibing Liu 已提交
64
bool prefix_compare(const PathTrie *x, const PathTrie *y);
65

Y
Yibing Liu 已提交
66 67 68
/* Get length of utf8 encoding string
 * See: http://stackoverflow.com/a/4063229
 */
Y
Yibing Liu 已提交
69
size_t get_utf8_str_len(const std::string &str);
Y
Yibing Liu 已提交
70

Y
Yibing Liu 已提交
71 72 73 74
/* Split a string into a list of strings on a given string
 * delimiter. NB: delimiters on beginning / end of string are
 * trimmed. Eg, "FooBarFoo" split on "Foo" returns ["Bar"].
 */
Y
Yibing Liu 已提交
75 76 77
std::vector<std::string> split_str(const std::string &s,
                                   const std::string &delim);

Y
Yibing Liu 已提交
78 79 80
/* Splits string into vector of strings representing
 * UTF-8 characters (not same as chars)
 */
Y
Yibing Liu 已提交
81
std::vector<std::string> split_utf8_str(const std::string &str);
82

83
// Add a word in index to the dicionary of fst
Y
Yibing Liu 已提交
84 85
void add_word_to_fst(const std::vector<int> &word,
                     fst::StdVectorFst *dictionary);
86

87
// Add a word in string to dictionary
Y
Yibing Liu 已提交
88 89 90 91 92 93 94
bool add_word_to_dictionary(
    const std::string &word,
    const std::unordered_map<std::string, int> &char_map,
    bool add_space,
    int SPACE_ID,
    fst::StdVectorFst *dictionary);
#endif  // DECODER_UTILS_H