mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Handle training exception for unsupported models
This commit is contained in:
parent
a6d0373063
commit
58349f44a0
@ -2,6 +2,7 @@ import json
|
||||
import sys
|
||||
import threading
|
||||
import time
|
||||
import traceback
|
||||
from pathlib import Path
|
||||
|
||||
import gradio as gr
|
||||
@ -184,7 +185,13 @@ def do_train(lora_name: str, micro_batch_size: int, batch_size: int, epochs: int
|
||||
bias="none",
|
||||
task_type="CAUSAL_LM"
|
||||
)
|
||||
|
||||
try:
|
||||
lora_model = get_peft_model(shared.model, config)
|
||||
except:
|
||||
yield traceback.format_exc()
|
||||
return
|
||||
|
||||
trainer = transformers.Trainer(
|
||||
model=lora_model,
|
||||
train_dataset=train_data,
|
||||
|
Loading…
Reference in New Issue
Block a user