Skip to content

Commit 83641d9

Browse files
taku910hiroyuki-komatsu
authored andcommitted
- Introduced new Options structure that are shared by Reranker and StackDecoder.
- Added typing_correction_reranker_max_score_diff_override flag so we can optimize the Parameter via Mendel flag. Currently this flag is only updated by the model update. PiperOrigin-RevId: 629312698
1 parent 1d82d68 commit 83641d9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/protocol/commands.proto

+8-5
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ message Capability {
571571
[default = NO_TEXT_DELETION_CAPABILITY];
572572
}
573573

574-
// Next ID: 68
574+
// Next ID: 69
575575
// Bundles together some Android experiment flags so that they can be easily
576576
// retrieved throughout the native code. These flags are generally specific to
577577
// the decoder, and are made available when the decoder is initialized.
@@ -703,21 +703,24 @@ message DecoderExperimentParams {
703703
// - " google"
704704
optional int32 english_variation_space_insertion_mode = 55 [default = 0];
705705

706-
optional int32 candidate_consistency_cost_max_diff = 63 [ default = 0 ];
706+
optional int32 candidate_consistency_cost_max_diff = 63 [default = 0];
707707

708708
optional int32 max_composition_event_to_process = 64 [default = 2];
709709

710710
// Fix the bug on the literal_on_top correction.
711-
optional bool fix_literal_on_top = 65 [ default = false ];
711+
optional bool fix_literal_on_top = 65 [default = false];
712712

713713
// Adds kana modifier insensitive corrections even when the score is smaller
714714
// than identity score. This will increase the coverage. Adds only when
715715
// top_score - correction_score < max_diff.
716-
optional float kana_modifier_insensitive_corrections_top_score_max_diff =
717-
66 [default = 0.0];
716+
optional float kana_modifier_insensitive_corrections_top_score_max_diff = 66
717+
[default = 0.0];
718718
// Extra penalty added to the corrections.
719719
optional float kana_modifier_insensitive_corrections_penalty = 67
720720
[default = 0.0];
721+
722+
optional float typing_correction_reranker_max_score_diff_override = 68
723+
[default = 0.0];
721724
}
722725

723726
// Clients' request to the server.

0 commit comments

Comments
 (0)