Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/sentencepiece.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraham Neubig <neubig@gmail.com>2018-04-18 16:34:49 +0300
committerGraham Neubig <neubig@gmail.com>2018-04-18 16:34:49 +0300
commit3d0825728fa6539e1bbc98e2e20e93fecdc63ae8 (patch)
tree5f6fb9a1ce0003fb5fe97ae5dab5e22bd2251ffb /src
parente53e788ee9d7f04442f76dc86601839ba00c551f (diff)
Fix typo
Diffstat (limited to 'src')
-rw-r--r--src/trainer_interface.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trainer_interface.cc b/src/trainer_interface.cc
index 670ade7..ce9b499 100644
--- a/src/trainer_interface.cc
+++ b/src/trainer_interface.cc
@@ -306,7 +306,7 @@ void TrainerInterface::Serialize(ModelProto *model_proto) const {
} else {
CHECK(trainer_spec_.vocab_size() == model_proto->pieces_size() &&
trainer_spec_.vocab_size() == static_cast<int>(dup.size()))
- << "Use --hard_vocab_limt=false to make the vocab size `soft limit`.";
+ << "Use --hard_vocab_limit=false to make the vocab size `soft limit`.";
}
}