small_model_filename
cannot be assigned during fine-tuning
#149
Labels
small_model_filename
cannot be assigned during fine-tuning
#149
The below code
LLM-VM/src/llm_vm/completion/optimize.py
Line 261 in 7a5877b
tries to extract
small_model_filename
fromkwargs
which is passed down fromclient.complete(...)
->optimizer.complete(...)
->optimizer.complete_delay_train(...)
I think the main purpose of this is to make sure we can save finetuned model to any location via
llm_vm.client
, but it will cause error because the samekwargs
withsmall_model_filename
will be passed to chat_gpt model:LLM-VM/src/llm_vm/completion/optimize.py
Line 254 in 7a5877b
Resulting in
The text was updated successfully, but these errors were encountered: