File tree Expand file tree Collapse file tree
src/modalities/tokenization Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,4 +171,8 @@ tutorials/instruction_tuning/prepared_data
171171config_files /instruction_tuning
172172data /lorem_ipsum_instruct.jsonl
173173tutorials /scaling_up /logs *
174- tutorials /scaling_up /experiments_old /*
174+ tutorials /scaling_up /experiments_old /*
175+
176+ results /*
177+ tutorials /einsum_transformer /experiments /*
178+ tutorials /warmstart /experiments /*
Original file line number Diff line number Diff line change @@ -118,7 +118,8 @@ def __init__(
118118 if len (self .tokenizer .get_vocab ()) > old_vocab_size :
119119 raise NotImplementedError (
120120 "Currently only tokens already known to the tokenizers vocabulary can be added,"
121- + " as resizing the embedding matrix is not yet supported!"
121+ + " as resizing the embedding matrix is not yet supported! "
122+ f"Before: { old_vocab_size } , after: { len (self .tokenizer .get_vocab ())} "
122123 )
123124 self .max_length = max_length
124125 self .truncation = truncation
You can’t perform that action at this time.
0 commit comments