59 lines
1.3 KiB
Python
59 lines
1.3 KiB
Python
# 这个文件用来储存所有的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"
|
||
]
|
||
|
||
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'] |