tons of modification for occasion filtering

This commit is contained in:
pangkaicheng
2025-12-09 16:06:07 +08:00
parent ee695e7511
commit 0b1d948f77
35 changed files with 728 additions and 2186 deletions

19
app/taxonomy.py Normal file
View File

@@ -0,0 +1,19 @@
# 这个文件用来储存所有的category和occasion这是标准文件。
CATEGORY = [
'shoes', 'bags', 'dresses', 'tops', 'pants', 'skirts', 'outerwear', 'swimwear', 'suits',
'watches', 'sunglasses', 'belts', 'hats', 'jewelry', 'neckties', 'scarves & shawls'
]
CLOTHING_CATEGORY = [
'shoes', 'bags', 'dresses', 'tops', 'pants', 'skirts', 'outerwear', 'swimwear'
]
ACCESSORY_CATEGORY = [
'watches', 'sunglasses', 'belts', 'hats', 'jewelry', 'neckties', 'scarves & shawls'
]
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"
]