"projects/PETR/petr/hungarian_assigner_3d.py" did not exist on "ac0302ed134f65aa7526ff78b0362a8f233fb4e4"
virtual_interface.cc 380 Bytes
Newer Older
SWHL's avatar
SWHL committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "virtual_interface.hh"

#include "lm_exception.hh"

namespace lm {
namespace base {

Vocabulary::~Vocabulary() {}

void Vocabulary::SetSpecial(WordIndex begin_sentence, WordIndex end_sentence, WordIndex not_found) {
  begin_sentence_ = begin_sentence;
  end_sentence_ = end_sentence;
  not_found_ = not_found;
}

Model::~Model() {}

} // namespace base
} // namespace lm