2019-01-24 15:01:19 +08:00
|
|
|
// (C) Copyright 2017, Google Inc.
|
|
|
|
// 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
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2019-01-24 15:01:19 +08:00
|
|
|
#include "lstm_test.h"
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
namespace tesseract {
|
|
|
|
|
|
|
|
// Tests that training with unicharset recoding learns faster than without,
|
|
|
|
// for Korean. This test is split in two, so it can be run sharded.
|
2019-01-24 15:01:19 +08:00
|
|
|
|
2018-08-24 21:07:48 +08:00
|
|
|
TEST_F(LSTMTrainerTest, RecodeTestKorBase) {
|
|
|
|
// A basic single-layer, bi-di 1d LSTM on Korean.
|
2019-01-24 15:01:19 +08:00
|
|
|
SetupTrainer("[1,1,0,32 Lbx96 O1c1]", "kor-full", "kor/kor.unicharset",
|
2019-01-25 22:05:57 +08:00
|
|
|
"kor.Arial_Unicode_MS.exp0.lstmf", false, true, 5e-4, false, "kor");
|
2019-01-24 15:01:19 +08:00
|
|
|
double kor_full_err = TrainIterations(kTrainerIterations * 2);
|
2018-08-24 21:07:48 +08:00
|
|
|
EXPECT_LT(kor_full_err, 88);
|
2021-03-13 05:06:34 +08:00
|
|
|
// EXPECT_GT(kor_full_err, 85);
|
|
|
|
LOG(INFO) << "********** Expected < 88 ************\n";
|
2018-08-24 21:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(LSTMTrainerTest, RecodeTestKor) {
|
|
|
|
// A basic single-layer, bi-di 1d LSTM on Korean.
|
2019-01-24 15:01:19 +08:00
|
|
|
SetupTrainer("[1,1,0,32 Lbx96 O1c1]", "kor-recode", "kor/kor.unicharset",
|
2019-01-25 22:05:57 +08:00
|
|
|
"kor.Arial_Unicode_MS.exp0.lstmf", true, true, 5e-4, false, "kor");
|
2018-08-24 21:07:48 +08:00
|
|
|
double kor_recode_err = TrainIterations(kTrainerIterations);
|
|
|
|
EXPECT_LT(kor_recode_err, 60);
|
2021-03-13 05:06:34 +08:00
|
|
|
LOG(INFO) << "********** Expected < 60 ************\n";
|
2018-08-24 21:07:48 +08:00
|
|
|
}
|
|
|
|
|
2019-01-24 15:01:19 +08:00
|
|
|
// Tests that the given string encodes and decodes back to the same
|
|
|
|
// with both recode on and off for Korean.
|
|
|
|
|
|
|
|
TEST_F(LSTMTrainerTest, EncodeDecodeBothTestKor) {
|
|
|
|
TestEncodeDecodeBoth("kor", "한국어 위키백과에 오신 것을 환영합니다!");
|
|
|
|
}
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
} // namespace tesseract.
|