Spaces:
Runtime error
Runtime error
| no_default_param_names = [ | |
| 'instruction', | |
| 'iinput', | |
| 'context', | |
| 'instruction_nochat', | |
| 'iinput_nochat', | |
| ] | |
| gen_hyper = ['temperature', | |
| 'top_p', | |
| 'top_k', | |
| 'num_beams', | |
| 'max_new_tokens', | |
| 'min_new_tokens', | |
| 'early_stopping', | |
| 'max_time', | |
| 'repetition_penalty', | |
| 'num_return_sequences', | |
| 'do_sample', | |
| ] | |
| eval_func_param_names = ['instruction', | |
| 'iinput', | |
| 'context', | |
| 'stream_output', | |
| 'prompt_type', | |
| 'prompt_dict'] + \ | |
| gen_hyper + \ | |
| ['chat', | |
| 'instruction_nochat', | |
| 'iinput_nochat', | |
| 'langchain_mode', | |
| 'langchain_action', | |
| 'top_k_docs', | |
| 'chunk', | |
| 'chunk_size', | |
| 'document_subset', | |
| 'document_choice', | |
| ] | |
| # form evaluate defaults for submit_nochat_api | |
| eval_func_param_names_defaults = eval_func_param_names.copy() | |
| for k in no_default_param_names: | |
| if k in eval_func_param_names_defaults: | |
| eval_func_param_names_defaults.remove(k) | |
| eval_extra_columns = ['prompt', 'response', 'score'] | |