If tags are empty, returne __main_prompt
This commit is contained in:
parent
f4f684a915
commit
85b6aad6a9
|
@ -77,7 +77,9 @@ class ImageCaption:
|
|||
return self.__main_prompt + ", " + tags_caption
|
||||
|
||||
def get_caption(self) -> str:
|
||||
return self.__main_prompt + ", " + ", ".join(self.__tags)
|
||||
if self.__tags:
|
||||
return self.__main_prompt + ", " + ", ".join(self.__tags)
|
||||
return self.__main_prompt
|
||||
|
||||
@staticmethod
|
||||
def __get_weighted_shuffled_tags(seed: int, tags: list[str], weights: list[float], max_target_tag_length: int) -> str:
|
||||
|
|
Loading…
Reference in New Issue