mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-23 06:12:50 +08:00
fix sft encode
Former-commit-id: b2f7cb446591e3722b5be8d250ddfe0caa226384
This commit is contained in:
parent
685ba1e02e
commit
925a026853
@ -505,7 +505,7 @@ def preprocess_data(
|
||||
input_ids, labels = [], []
|
||||
|
||||
for i in range(len(dialog) // 2):
|
||||
source_ids = tokenizer.encode(text=dialog[2*i], add_special_tokens=True)
|
||||
source_ids = tokenizer.encode(text=dialog[2*i], add_special_tokens=(i == 0))
|
||||
target_ids = tokenizer.encode(text=dialog[2*i+1], add_special_tokens=False)
|
||||
|
||||
if len(source_ids) > data_args.max_source_length:
|
||||
|
Loading…
x
Reference in New Issue
Block a user