Open benzhangdragonplus opened 4 months ago
Hi, thanks for the question! I dont think we have looked into different ways to concatenate the attributes to the original prompts. This was a design choice to use ' '
instead of a ','
Please let us know if you have observed any significant performance improvements or changes when using a comma instead. Would be happy to integrate the change to the code
file location:trainscripts/imagesliders/promptutil.py row 163-167: copy['target'] = att + ' ' + copy['target'] copy['positive'] = att + ' ' + copy['positive'] copy['neutral'] = att + ' ' + copy['neutral'] copy['unconditional'] = att + ' ' + copy_['unconditional']
Why do $attributes need to be concatenated with ' ' for all parameters? Will this not be considered as the same set of prompt words as the following prompt words? Should ' ,' not be used for concatenation?