Spaces:
Running
Running
File size: 212 Bytes
32faf2b |
1 2 3 4 5 6 7 8 9 10 |
general_anomaly_description = [
'defect on {}',
'damage on {}',
'flaw on {}',
]
def build_general_prompts(category):
return [[f.format(category), category] for f in general_anomaly_description]
|