Files
lc_stylist_agent/app/taxonomy.py

59 lines
1.3 KiB
Python
Raw Normal View History

# 这个文件用来储存所有的category和occasion这是标准文件。
OCCASION = [
"Casual", "Formal", "Activewear", "Resort", "Evening", "Outdoor",
"Business / workwear", "Cocktail / Semi-Formal", "Black Tie / White Tie",
"Bridal / Wedding", "Festival / Concert", "Party / Clubbing",
"Travel / Transit", "Athleisure", "Beach / Swim", "Ski / Snow / Mountain",
"Garden Party / Daytime Event"
]
2025-12-10 17:27:56 +08:00
CATEGORY = {
'clothing': [
'coats',
'jackets',
'blazers',
'puffer',
'cardigan',
'sweater',
'shirts',
't-shirts',
'pullover',
'polos',
'bodysuits',
'dresses',
'skirts',
'jeans',
'shorts',
'leggings',
'jumpsuits',
'swimwear',
],
'shoes': [
'sneakers',
'formal shoes',
'heels',
'flats',
'sandals',
'slides',
'boots',
],
'bags': [
'bags'
],
'accessories': [
'necklaces',
'bracelets',
'jewellery',
'eyewear',
'scarves',
'hats',
'gloves',
'belts',
'socks',
'watches'
'ties',
]
}
ALL_CATEGORY = sum(CATEGORY.values(), [])
IGNORE_CATEGORY = ['socks']