File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -687,6 +687,13 @@ def build_embedding_matrix(
687
687
help = "Number of tokens to process in each batch" ,
688
688
show_default = True ,
689
689
)
690
+ @click .option (
691
+ "--allow-lm-head-prefix-match/--no-allow-lm-head-prefix-match" ,
692
+ is_flag = True ,
693
+ default = True ,
694
+ help = "Allow prefix matches for LM head tokens" ,
695
+ show_default = True ,
696
+ )
690
697
@add_merge_options
691
698
def main (
692
699
model : str ,
@@ -699,6 +706,7 @@ def main(
699
706
weight_scheme : str ,
700
707
subword_method : str ,
701
708
batch_size : Optional [int ],
709
+ allow_lm_head_prefix_match : bool ,
702
710
merge_options : MergeOptions ,
703
711
):
704
712
merge_options .apply_global_options ()
@@ -764,7 +772,7 @@ def main(
764
772
donor_lm_head ,
765
773
orig_vocab = orig_vocab ,
766
774
donor_vocab = donor_vocab ,
767
- allow_prefix = True ,
775
+ allow_prefix = allow_lm_head_prefix_match ,
768
776
allow_byte = True ,
769
777
is_lm_head = True ,
770
778
options = options ,
You can’t perform that action at this time.
0 commit comments