mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2025-12-06 07:12:10 +01:00
lora training fixes: (#970)
Fix wrong input format being picked Fix crash when an entry in the dataset has an attribute of value None
This commit is contained in:
parent
4f7e88c043
commit
5ad92c940e
|
|
@ -185,8 +185,9 @@ def do_train(lora_name: str, micro_batch_size: int, batch_size: int, epochs: int
|
|||
|
||||
def generate_prompt(data_point: dict[str, str]):
|
||||
for options, data in format_data.items():
|
||||
if set(options.split(',')) == set(x[0] for x in data_point.items() if len(x[1].strip()) > 0):
|
||||
if set(options.split(',')) == set(x[0] for x in data_point.items() if (x[1] != None and len(x[1].strip()) > 0)):
|
||||
for key, val in data_point.items():
|
||||
if val != None:
|
||||
data = data.replace(f'%{key}%', val)
|
||||
return data
|
||||
raise RuntimeError(f'Data-point "{data_point}" has no keyset match within format "{list(format_data.keys())}"')
|
||||
|
|
|
|||
Loading…
Reference in a new issue