"src/diffusers/pipelines/ltx/modeling_latent_upsampler.py" did not exist on "8b99f7e1571144afe7ed45619b04a482076f7e18"
Unverified Commit a575d9e5 authored by Hailey Schoelkopf's avatar Hailey Schoelkopf Committed by GitHub
Browse files

swap target_delimiter and fewshot_delimiter

parent 3dcde17b
......@@ -66,7 +66,6 @@ class TaskConfig(dict):
doc_to_text: Union[Callable, str] = None
doc_to_target: Union[Callable, str] = None
use_prompt: str = None
delimiter: str = "\n\n"
description: str = ""
num_fewshot: int = 0
......@@ -77,8 +76,8 @@ class TaskConfig(dict):
gold_alias: Union[Callable, str] = None
output_type: str = "greedy_until"
generation_kwargs: dict = None
target_delimiter: str = "\n\n"
fewshot_delimiter: str = " "
target_delimiter: str = " "
fewshot_delimiter: str = "\n\n"
filter_list: Union[str, list] = None
should_decontaminate: bool = False
doc_to_decontamination_query: str = None
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment