属性检测接口,响应字段规范
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -131,4 +131,5 @@ uwsgi
|
||||
app/logs
|
||||
app/logs/*
|
||||
*.log
|
||||
*.jpg
|
||||
*.jpg
|
||||
*.zip
|
||||
@@ -1,9 +1,10 @@
|
||||
import logging
|
||||
from pprint import pprint
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.schemas.attribute import AttributeModel
|
||||
from app.service.attribute_recognition import const
|
||||
from app.service.attribute_recognition import const, const_debug
|
||||
from app.service.attribute_recognition.service import AttributeRecognition
|
||||
|
||||
logger = logging.getLogger()
|
||||
|
||||
@@ -20,27 +20,28 @@ def outfit_matcher(request_item: OutfitMatcher):
|
||||
for i in range(len(request_item['database'])):
|
||||
request_item['database'][i] = dict(request_item['database'][i])
|
||||
|
||||
try:
|
||||
fashion_dataset = FashionDataset(request_item['database'])
|
||||
service = OutfitMaterTypeAware()
|
||||
result = []
|
||||
start_time = time.time()
|
||||
for item in request_item['query']:
|
||||
outfits = fashion_dataset.generate_outfit(item, request_item["topk"], request_item["max_outfits"])
|
||||
scores, features = service.get_result(outfits)
|
||||
# save features in databases
|
||||
# try:
|
||||
fashion_dataset = FashionDataset(request_item['database'])
|
||||
service = OutfitMaterTypeAware()
|
||||
result = []
|
||||
start_time = time.time()
|
||||
for item in request_item['query']:
|
||||
outfits = fashion_dataset.generate_outfit(item, request_item["topk"], request_item["max_outfits"])
|
||||
scores, features = service.get_result(outfits)
|
||||
# save features in databases
|
||||
|
||||
if request_item['is_best']:
|
||||
best_outfits, best_scores = service.visualize(outfits, scores, request_item["topk"], best=True,
|
||||
# output_path=os.path.join(r"E:\workspace\outfit_matcher\2024 SS Outfit", f"{item['item_name']}_best_{param['topk']}.png")
|
||||
)
|
||||
result.append({"outfits": best_outfits, "scores": best_scores})
|
||||
else:
|
||||
bad_outfits, bad_scores = service.visualize(outfits, scores, request_item["topk"], best=False,
|
||||
# output_path=os.path.join(r"E:\workspace\outfit_matcher\2024 SS Outfit", f"{item['item_name']}_worst_{param['topk']}.png")
|
||||
)
|
||||
result.append({"outfits": bad_outfits, "scores": bad_scores})
|
||||
logger.info(f"run time is : {time.time() - start_time}")
|
||||
return {"message": "ok", "data": result}
|
||||
except Exception as e:
|
||||
return {"message": f"{e}", "data": e}
|
||||
if request_item['is_best']:
|
||||
best_outfits, best_scores = service.visualize(outfits, scores, request_item["topk"], best=True,
|
||||
# output_path=os.path.join(r"E:\workspace\outfit_matcher\2024 SS Outfit", f"{item['item_name']}_best_{param['topk']}.png")
|
||||
)
|
||||
result.append({"outfits": best_outfits, "scores": best_scores})
|
||||
else:
|
||||
bad_outfits, bad_scores = service.visualize(outfits, scores, request_item["topk"], best=False,
|
||||
# output_path=os.path.join(r"E:\workspace\outfit_matcher\2024 SS Outfit", f"{item['item_name']}_worst_{param['topk']}.png")
|
||||
)
|
||||
result.append({"outfits": bad_outfits, "scores": bad_scores})
|
||||
logger.info(f"run time is : {time.time() - start_time}")
|
||||
return {"message": "ok", "data": result}
|
||||
# except Exception as e:
|
||||
# logger.warning(e)
|
||||
# return {"message": f"{e}", "data": e}
|
||||
1180
app/logs/errors.log
1180
app/logs/errors.log
File diff suppressed because it is too large
Load Diff
139
app/service/attribute_recognition/const_debug.py
Normal file
139
app/service/attribute_recognition/const_debug.py
Normal file
@@ -0,0 +1,139 @@
|
||||
import torch
|
||||
|
||||
device = torch.device('cuda')
|
||||
top_discription_list = [r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\1_top_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\2_top_type.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\3_top_Sleeve_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\4_top_Sleeve_shape.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\5_top_Sleeve_shoulder.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\6_top_Neckline.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\7_outer_Print.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\8_outer_Material.csv',
|
||||
# r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\9_top_Material.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\9_top_Softness.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\10_top_Design.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\11_top_OPType.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\12_top_Silhouette.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\top\7_top_Collar.csv']
|
||||
|
||||
top_model_list = ['top_length',
|
||||
'top_type',
|
||||
'top_Sleeve_length',
|
||||
'top_Sleeve_shape',
|
||||
'top_Sleeve_shoulder',
|
||||
'top_Neckline',
|
||||
'top_print',
|
||||
'top_material',
|
||||
'top_Softness',
|
||||
'top_Design',
|
||||
'top_optype',
|
||||
'top_Silhouette',
|
||||
'top_Collar'
|
||||
]
|
||||
|
||||
bottom_discription_list = [
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\2_bottom_subtype.csv',
|
||||
# r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\3_bottom_structure.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\3_bottom_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\7_outer_Print.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\8_outer_Material.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\5_bottom_Softness.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\8_bottom_Silhouette.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\7_bottom_OPType.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\bottom\6_bottom_Design.csv']
|
||||
|
||||
bottom_model_list = [
|
||||
'bottom_sub-Type',
|
||||
'bottom_length',
|
||||
'bottom_print',
|
||||
'bottom_material',
|
||||
'bottom_Softness_B',
|
||||
'bottom_Silhouette_B',
|
||||
'bottom_OPType_B',
|
||||
'bottom_design']
|
||||
|
||||
outwear_discription_list = [r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\1_outer_length.csv',
|
||||
# r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\2_outer_type.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\3_outer_sleeve_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\4_outer_sleeve_shape.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\5_outer_sleeve_shoulder.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\6_outer_Collar.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\7_outer_Print.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\8_outer_Material.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\9_outer_Softness.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\10_outer_Design.csv',
|
||||
# r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\11_outer_opening.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\12_outer_OPType.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\outwear\13_outer_Silhouette.csv', ]
|
||||
|
||||
outwear_model_list = ['outwear_outer_length',
|
||||
# 'outwear_2_outer_type',
|
||||
'outwear_outer_sleeve_length',
|
||||
'outwear_outer_sleeve_shape',
|
||||
'outwear_outer_sleeve_shoulder',
|
||||
'outwear_outer_collar',
|
||||
'outwear_print',
|
||||
'outwear_material',
|
||||
'outwear_outer_softness',
|
||||
'outwear_outer_design',
|
||||
# 'outwear_11_outer_opening',
|
||||
'outwear_outer_optype',
|
||||
'outwear_outer_silhouette']
|
||||
|
||||
jumpsuit_discription_list = [r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\1_jumsuit_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\2_jumpsuit_Sleeve_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\3_jumpsuit_Sleeve_shape.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\4_jumpsuit_Sleeve_shoulder.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\5_jumpsuit_Neckline.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\6_jumpsuit_Collar.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\7_jumpsuit_Print.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\8_jumpsuit_Material.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\9_jumpsuit_Softness.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\10_jumsuit_design.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\11_jumpsuit_OPType.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\jumpsuit\12_jumpsuit_subtype.csv']
|
||||
|
||||
jumpsuit_model_list = ['jumpsuit_length',
|
||||
'jumpsuit_sleeve_length',
|
||||
'jumpsuit_sleeve_shape',
|
||||
'jumpsuit_sleeve_shoulder',
|
||||
'jumpsuit_neckline',
|
||||
'jumpsuit_collar',
|
||||
'jumpsuit_print',
|
||||
'jumpsuit_material',
|
||||
'jumpsuit_softness',
|
||||
'jumpsuit_design',
|
||||
'jumpsuit_optype',
|
||||
'jumpsuit_subtype']
|
||||
|
||||
dress_discription_list = [r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\1_dress_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\3_top_Sleeve_length.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\4_top_Sleeve_shape.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\5_top_Sleeve_shoulder.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\ori5_dress_Neckline.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\7_outer_Print.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\7_top_Collar.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\8_outer_Material.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\9_dress_Design.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\9_top_Softness.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\11_dress_Silhouette.csv',
|
||||
# r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\11_top_OPType.csv',
|
||||
r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\dress\12_dress_type.csv']
|
||||
|
||||
dress_model_list = ['dress_length',
|
||||
'dress_sleeve_length',
|
||||
'dress_sleeve_shape',
|
||||
'dress_sleeve_shoulder',
|
||||
'dress_neckline',
|
||||
'dress_print',
|
||||
'dress_collar',
|
||||
'dress_material',
|
||||
'dress_design',
|
||||
'dress_softness',
|
||||
'dress_silohouette12',
|
||||
# 'dress_'
|
||||
'dress_type'
|
||||
]
|
||||
|
||||
category_discription = r'E:\workspace\trinity_client_mixi\app\service\attribute_recognition\discriptor\category\category_dis.csv'
|
||||
category_model = 'category'
|
||||
@@ -1,21 +1,21 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line Skirt,bottom_Sub-Type_1,BTM_Sub-Type,2
|
||||
Bodycon Skirt,bottom_Sub-Type_2,BTM_Sub-Type,2
|
||||
Boot-Cut,bottom_Sub-Type_3,BTM_Sub-Type,2
|
||||
Bubble skirt,bottom_Sub-Type_4,BTM_Sub-Type,2
|
||||
Cargo Pants,bottom_Sub-Type_5,BTM_Sub-Type,2
|
||||
Culottes,bottom_Sub-Type_6,BTM_Sub-Type,2
|
||||
Handkerchief Skirt,bottom_Sub-Type_7,BTM_Sub-Type,2
|
||||
Jeans,bottom_Sub-Type_8,BTM_Sub-Type,2
|
||||
Joggers,bottom_Sub-Type_9,BTM_Sub-Type,2
|
||||
Leather pants,bottom_Sub-Type_10,BTM_Sub-Type,2
|
||||
Leggings,bottom_Sub-Type_11,BTM_Sub-Type,2
|
||||
Mermaid,bottom_Sub-Type_12,BTM_Sub-Type,2
|
||||
Pattened pants,bottom_Sub-Type_13,BTM_Sub-Type,2
|
||||
Peg leg Pants-Cigarette Pants,bottom_Sub-Type_14,BTM_Sub-Type,2
|
||||
Pencil Skirt,bottom_Sub-Type_15,BTM_Sub-Type,2
|
||||
Pleated Skirt,bottom_Sub-Type_16,BTM_Sub-Type,2
|
||||
Shorts,bottom_Sub-Type_17,BTM_Sub-Type,2
|
||||
Skater Skirt,bottom_Sub-Type_18,BTM_Sub-Type,2
|
||||
Suit Trousers,bottom_Sub-Type_19,BTM_Sub-Type,2
|
||||
Tier Skirt,bottom_Sub-Type_20,BTM_Sub-Type,2
|
||||
A Line Skirt,bottom_Sub-Type_1,sub_type,2
|
||||
Bodycon Skirt,bottom_Sub-Type_2,sub_type,2
|
||||
Boot-Cut,bottom_Sub-Type_3,sub_type,2
|
||||
Bubble skirt,bottom_Sub-Type_4,sub_type,2
|
||||
Cargo Pants,bottom_Sub-Type_5,sub_type,2
|
||||
Culottes,bottom_Sub-Type_6,sub_type,2
|
||||
Handkerchief Skirt,bottom_Sub-Type_7,sub_type,2
|
||||
Jeans,bottom_Sub-Type_8,sub_type,2
|
||||
Joggers,bottom_Sub-Type_9,sub_type,2
|
||||
Leather pants,bottom_Sub-Type_10,sub_type,2
|
||||
Leggings,bottom_Sub-Type_11,sub_type,2
|
||||
Mermaid,bottom_Sub-Type_12,sub_type,2
|
||||
Pattened pants,bottom_Sub-Type_13,sub_type,2
|
||||
Peg leg Pants-Cigarette Pants,bottom_Sub-Type_14,sub_type,2
|
||||
Pencil Skirt,bottom_Sub-Type_15,sub_type,2
|
||||
Pleated Skirt,bottom_Sub-Type_16,sub_type,2
|
||||
Shorts,bottom_Sub-Type_17,sub_type,2
|
||||
Skater Skirt,bottom_Sub-Type_18,sub_type,2
|
||||
Suit Trousers,bottom_Sub-Type_19,sub_type,2
|
||||
Tier Skirt,bottom_Sub-Type_20,sub_type,2
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Short,attr_BTM_length_1,BTM_length,3
|
||||
Middle,attr_BTM_length_2,BTM_length,3
|
||||
Seven,attr_BTM_length_3,BTM_length,3
|
||||
Nine,attr_BTM_length_4,BTM_length,3
|
||||
Long,attr_BTM_length_5,BTM_length,3
|
||||
Short,attr_BTM_length_1,length,3
|
||||
Middle,attr_BTM_length_2,length,3
|
||||
Seven,attr_BTM_length_3,length,3
|
||||
Nine,attr_BTM_length_4,length,3
|
||||
Long,attr_BTM_length_5,length,3
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_B_1,Softness_B,5
|
||||
Medium,attr_Softness_B_2,Softness_B,5
|
||||
Hard,attr_Softness_B_3,Softness_B,5
|
||||
Soft,attr_Softness_B_1,softness,5
|
||||
Medium,attr_Softness_B_2,softness,5
|
||||
Hard,attr_Softness_B_3,softness,5
|
||||
|
||||
|
@@ -1,17 +1,17 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_B_1,Design_B,6
|
||||
Tiered,attr_Design_B_2,Design_B,6
|
||||
Tassel,attr_Design_B_3,Design_B,6
|
||||
Ruffle,attr_Design_B_4,Design_B,6
|
||||
Pleated,attr_Design_B_5,Design_B,6
|
||||
Wrap,attr_Design_B_6,Design_B,6
|
||||
Ripped,attr_Design_B_7,Design_B,6
|
||||
Cut out,attr_Design_B_8,Design_B,6
|
||||
Eyelet,attr_Design_B_9,Design_B,6
|
||||
Folded,attr_Design_B_10,Design_B,6
|
||||
Tied,attr_Design_B_11,Design_B,6
|
||||
Drapes,attr_Design_B_12,Design_B,6
|
||||
Ribbon,attr_Design_B_13,Design_B,6
|
||||
Button,attr_Design_B_14,Design_B,6
|
||||
Split,attr_Design_B_15,Design_B,6
|
||||
Fishtail,attr_Design_B_16,Design_B,6
|
||||
Asymmetrical,attr_Design_B_1,design,6
|
||||
Tiered,attr_Design_B_2,design,6
|
||||
Tassel,attr_Design_B_3,design,6
|
||||
Ruffle,attr_Design_B_4,design,6
|
||||
Pleated,attr_Design_B_5,design,6
|
||||
Wrap,attr_Design_B_6,design,6
|
||||
Ripped,attr_Design_B_7,design,6
|
||||
Cut out,attr_Design_B_8,design,6
|
||||
Eyelet,attr_Design_B_9,design,6
|
||||
Folded,attr_Design_B_10,design,6
|
||||
Tied,attr_Design_B_11,design,6
|
||||
Drapes,attr_Design_B_12,design,6
|
||||
Ribbon,attr_Design_B_13,design,6
|
||||
Button,attr_Design_B_14,design,6
|
||||
Split,attr_Design_B_15,design,6
|
||||
Fishtail,attr_Design_B_16,design,6
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_B_1,OPType_B,7
|
||||
Zipper,attr_OPType_B_2,OPType_B,7
|
||||
Thread,attr_OPType_B_3,OPType_B,7
|
||||
Hook,attr_OPType_B_4,OPType_B,7
|
||||
Elastic,attr_OPType_B_5,OPType_B,7
|
||||
Button,attr_OPType_B_1,opening_type,7
|
||||
Zipper,attr_OPType_B_2,opening_type,7
|
||||
Thread,attr_OPType_B_3,opening_type,7
|
||||
Hook,attr_OPType_B_4,opening_type,7
|
||||
Elastic,attr_OPType_B_5,opening_type,7
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Abstract,attr_Print_O_1,Print_B,7
|
||||
Allover,attr_Print_O_2,Print_B,7
|
||||
Animal,attr_Print_O_3,Print_B,7
|
||||
Camouflage,attr_Print_O_4,Print_B,7
|
||||
Checks,attr_Print_O_5,Print_B,7
|
||||
Color_block,attr_Print_O_6,Print_B,7
|
||||
Disty print,attr_Print_O_7,Print_B,7
|
||||
Dotted,attr_Print_O_8,Print_B,7
|
||||
Floral,attr_Print_O_9,Print_B,7
|
||||
Graphic print,attr_Print_O_10,Print_B,7
|
||||
Logo and slogan,attr_Print_O_11,Print_B,7
|
||||
Patchwork,attr_Print_O_12,Print_B,7
|
||||
Plain,attr_Print_O_13,Print_B,7
|
||||
Plain_dnim,attr_Print_O_14,Print_B,7
|
||||
Stripe,attr_Print_O_15,Print_B,7
|
||||
Abstract,attr_Print_O_1,print,7
|
||||
Allover,attr_Print_O_2,print,7
|
||||
Animal,attr_Print_O_3,print,7
|
||||
Camouflage,attr_Print_O_4,print,7
|
||||
Checks,attr_Print_O_5,print,7
|
||||
Color_block,attr_Print_O_6,print,7
|
||||
Disty print,attr_Print_O_7,print,7
|
||||
Dotted,attr_Print_O_8,print,7
|
||||
Floral,attr_Print_O_9,print,7
|
||||
Graphic print,attr_Print_O_10,print,7
|
||||
Logo and slogan,attr_Print_O_11,print,7
|
||||
Patchwork,attr_Print_O_12,print,7
|
||||
Plain,attr_Print_O_13,print,7
|
||||
Plain_dnim,attr_Print_O_14,print,7
|
||||
Stripe,attr_Print_O_15,print,7
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line,attr_Silhouette_B_1,Silhouette_B,8
|
||||
H Shape,attr_Silhouette_B_2,Silhouette_B,8
|
||||
Slim,attr_Silhouette_B_3,Silhouette_B,8
|
||||
Peg-leg,attr_Silhouette_B_4,Silhouette_B,8
|
||||
Peplum,attr_Silhouette_B_5,Silhouette_B,8
|
||||
A Line,attr_Silhouette_B_1,silhouette,8
|
||||
H Shape,attr_Silhouette_B_2,silhouette,8
|
||||
Slim,attr_Silhouette_B_3,silhouette,8
|
||||
Peg-leg,attr_Silhouette_B_4,silhouette,8
|
||||
Peplum,attr_Silhouette_B_5,silhouette,8
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Canvas,attr_Material_O_1,Material_B,8
|
||||
Chambray,attr_Material_O_2,Material_B,8
|
||||
Chenille,attr_Material_O_3,Material_B,8
|
||||
Chiffon,attr_Material_O_4,Material_B,8
|
||||
Corduroy,attr_Material_O_5,Material_B,8
|
||||
Crepe,attr_Material_O_6,Material_B,8
|
||||
Denim,attr_Material_O_7,Material_B,8
|
||||
Faux_fur,attr_Material_O_8,Material_B,8
|
||||
Faux_leather,attr_Material_O_9,Material_B,8
|
||||
Flannel,attr_Material_O_10,Material_B,8
|
||||
Fleece,attr_Material_O_11,Material_B,8
|
||||
Gingham,attr_Material_O_12,Material_B,8
|
||||
Jersey,attr_Material_O_13,Material_B,8
|
||||
Knit,attr_Material_O_14,Material_B,8
|
||||
Lace,attr_Material_O_15,Material_B,8
|
||||
Lawn,attr_Material_O_16,Material_B,8
|
||||
Neoprene,attr_Material_O_17,Material_B,8
|
||||
Organza,attr_Material_O_18,Material_B,8
|
||||
Plush,attr_Material_O_19,Material_B,8
|
||||
Satin,attr_Material_O_20,Material_B,8
|
||||
Serge,attr_Material_O_21,Material_B,8
|
||||
Taffeta,attr_Material_O_22,Material_B,8
|
||||
Tulle,attr_Material_O_23,Material_B,8
|
||||
Tweed,attr_Material_O_24,Material_B,8
|
||||
Twill,attr_Material_O_25,Material_B,8
|
||||
Velvet,attr_Material_O_26,Material_B,8
|
||||
Vinyl,attr_Material_O_27,Material_B,8
|
||||
Canvas,attr_Material_O_1,material,8
|
||||
Chambray,attr_Material_O_2,material,8
|
||||
Chenille,attr_Material_O_3,material,8
|
||||
Chiffon,attr_Material_O_4,material,8
|
||||
Corduroy,attr_Material_O_5,material,8
|
||||
Crepe,attr_Material_O_6,material,8
|
||||
Denim,attr_Material_O_7,material,8
|
||||
Faux_fur,attr_Material_O_8,material,8
|
||||
Faux_leather,attr_Material_O_9,material,8
|
||||
Flannel,attr_Material_O_10,material,8
|
||||
Fleece,attr_Material_O_11,material,8
|
||||
Gingham,attr_Material_O_12,material,8
|
||||
Jersey,attr_Material_O_13,material,8
|
||||
Knit,attr_Material_O_14,material,8
|
||||
Lace,attr_Material_O_15,material,8
|
||||
Lawn,attr_Material_O_16,material,8
|
||||
Neoprene,attr_Material_O_17,material,8
|
||||
Organza,attr_Material_O_18,material,8
|
||||
Plush,attr_Material_O_19,material,8
|
||||
Satin,attr_Material_O_20,material,8
|
||||
Serge,attr_Material_O_21,material,8
|
||||
Taffeta,attr_Material_O_22,material,8
|
||||
Tulle,attr_Material_O_23,material,8
|
||||
Tweed,attr_Material_O_24,material,8
|
||||
Twill,attr_Material_O_25,material,8
|
||||
Velvet,attr_Material_O_26,material,8
|
||||
Vinyl,attr_Material_O_27,material,8
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line,attr_Silhouette_B_1,Silhouette_B,10
|
||||
H Shape,attr_Silhouette_B_2,Silhouette_B,10
|
||||
Slim,attr_Silhouette_B_3,Silhouette_B,10
|
||||
Peg-top,attr_Silhouette_B_4,Silhouette_B,10
|
||||
Peplum,attr_Silhouette_B_5,Silhouette_B,10
|
||||
A Line,attr_Silhouette_B_1,silhouette,10
|
||||
H Shape,attr_Silhouette_B_2,silhouette,10
|
||||
Slim,attr_Silhouette_B_3,silhouette,10
|
||||
Peg-top,attr_Silhouette_B_4,silhouette,10
|
||||
Peplum,attr_Silhouette_B_5,silhouette,10
|
||||
|
||||
|
@@ -1,3 +1,3 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Pants,BTM_Type_1,BTM_Type,1
|
||||
Skirt,BTM_Type_2,BTM_Type,1
|
||||
Pants,BTM_Type_1,type,1
|
||||
Skirt,BTM_Type_2,type,1
|
||||
|
||||
|
@@ -1,47 +1,47 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Jeans,BTM_Sub-Type_1,BTM_Sub-Type,2
|
||||
Leggings,BTM_Sub-Type_2,BTM_Sub-Type,2
|
||||
Joggers,BTM_Sub-Type_3,BTM_Sub-Type,2
|
||||
Suit Trousers,BTM_Sub-Type_4,BTM_Sub-Type,2
|
||||
Cargo Pants,BTM_Sub-Type_5,BTM_Sub-Type,2
|
||||
Culottes,BTM_Sub-Type_6,BTM_Sub-Type,2
|
||||
Peg leg Pants ,BTM_Sub-Type_7,BTM_Sub-Type,2
|
||||
A Line Skirt_gathered,BTM_Sub-Type_8,BTM_Sub-Type,2
|
||||
Pencil Skirt,BTM_Sub-Type_9,BTM_Sub-Type,2
|
||||
Handkerchief Skirt,BTM_Sub-Type_10,BTM_Sub-Type,2
|
||||
Mermaid/Fishtail Skirt,BTM_Sub-Type_11,BTM_Sub-Type,2
|
||||
Skater Skirt,BTM_Sub-Type_12,BTM_Sub-Type,2
|
||||
Bodycon Skirt,BTM_Sub-Type_13,BTM_Sub-Type,2
|
||||
Shorts,BTM_Sub-Type_14,BTM_Sub-Type,2
|
||||
boot-cut_flare,BTM_Sub-Type_15,BTM_Sub-Type,2
|
||||
Pleated Skirt,BTM_Sub-Type_16,BTM_Sub-Type,2
|
||||
Bubble skirt,BTM_Sub-Type_17,BTM_Sub-Type,2
|
||||
Leather pants,BTM_Sub-Type_18,BTM_Sub-Type,2
|
||||
pattened pants,BTM_Sub-Type_19,BTM_Sub-Type,2
|
||||
Tier Skirt,BTM_Sub-Type_20,BTM_Sub-Type,2
|
||||
asymmetric_mullet,BTM_Sub-Type_21,BTM_Sub-Type,2
|
||||
baggy,BTM_Sub-Type_22,BTM_Sub-Type,2
|
||||
denim skirt,BTM_Sub-Type_23,BTM_Sub-Type,2
|
||||
flare skirt,BTM_Sub-Type_24,BTM_Sub-Type,2
|
||||
fringe skirt,BTM_Sub-Type_25,BTM_Sub-Type,2
|
||||
godet skirt,BTM_Sub-Type_26,BTM_Sub-Type,2
|
||||
high rise pants,BTM_Sub-Type_27,BTM_Sub-Type,2
|
||||
hight waist skirt,BTM_Sub-Type_28,BTM_Sub-Type,2
|
||||
hat pants,BTM_Sub-Type_29,BTM_Sub-Type,2
|
||||
leather skirts,BTM_Sub-Type_30,BTM_Sub-Type,2
|
||||
long skirts,BTM_Sub-Type_31,BTM_Sub-Type,2
|
||||
low rise pants,BTM_Sub-Type_32,BTM_Sub-Type,2
|
||||
mini skirt,BTM_Sub-Type_33,BTM_Sub-Type,2
|
||||
panel kirt,BTM_Sub-Type_34,BTM_Sub-Type,2
|
||||
peg top skirt,BTM_Sub-Type_35,BTM_Sub-Type,2
|
||||
pencil pants,BTM_Sub-Type_36,BTM_Sub-Type,2
|
||||
shorts (denim),BTM_Sub-Type_37,BTM_Sub-Type,2
|
||||
skinny_cigarette pants,BTM_Sub-Type_38,BTM_Sub-Type,2
|
||||
split skirt,BTM_Sub-Type_39,BTM_Sub-Type,2
|
||||
stirrup,BTM_Sub-Type_40,BTM_Sub-Type,2
|
||||
stranget pants,BTM_Sub-Type_41,BTM_Sub-Type,2
|
||||
straight skirt,BTM_Sub-Type_42,BTM_Sub-Type,2
|
||||
wide leg pants,BTM_Sub-Type_43,BTM_Sub-Type,2
|
||||
wrap skirt,BTM_Sub-Type_44,BTM_Sub-Type,2
|
||||
Jeans,BTM_Sub-Type_45,BTM_Sub-Type,2
|
||||
Leggings,BTM_Sub-Type_46,BTM_Sub-Type,2
|
||||
Jeans,BTM_Sub-Type_1,sub_type,2
|
||||
Leggings,BTM_Sub-Type_2,sub_type,2
|
||||
Joggers,BTM_Sub-Type_3,sub_type,2
|
||||
Suit Trousers,BTM_Sub-Type_4,sub_type,2
|
||||
Cargo Pants,BTM_Sub-Type_5,sub_type,2
|
||||
Culottes,BTM_Sub-Type_6,sub_type,2
|
||||
Peg leg Pants ,BTM_Sub-Type_7,sub_type,2
|
||||
A Line Skirt_gathered,BTM_Sub-Type_8,sub_type,2
|
||||
Pencil Skirt,BTM_Sub-Type_9,sub_type,2
|
||||
Handkerchief Skirt,BTM_Sub-Type_10,sub_type,2
|
||||
Mermaid/Fishtail Skirt,BTM_Sub-Type_11,sub_type,2
|
||||
Skater Skirt,BTM_Sub-Type_12,sub_type,2
|
||||
Bodycon Skirt,BTM_Sub-Type_13,sub_type,2
|
||||
Shorts,BTM_Sub-Type_14,sub_type,2
|
||||
boot-cut_flare,BTM_Sub-Type_15,sub_type,2
|
||||
Pleated Skirt,BTM_Sub-Type_16,sub_type,2
|
||||
Bubble skirt,BTM_Sub-Type_17,sub_type,2
|
||||
Leather pants,BTM_Sub-Type_18,sub_type,2
|
||||
pattened pants,BTM_Sub-Type_19,sub_type,2
|
||||
Tier Skirt,BTM_Sub-Type_20,sub_type,2
|
||||
asymmetric_mullet,BTM_Sub-Type_21,sub_type,2
|
||||
baggy,BTM_Sub-Type_22,sub_type,2
|
||||
denim skirt,BTM_Sub-Type_23,sub_type,2
|
||||
flare skirt,BTM_Sub-Type_24,sub_type,2
|
||||
fringe skirt,BTM_Sub-Type_25,sub_type,2
|
||||
godet skirt,BTM_Sub-Type_26,sub_type,2
|
||||
high rise pants,BTM_Sub-Type_27,sub_type,2
|
||||
hight waist skirt,BTM_Sub-Type_28,sub_type,2
|
||||
hat pants,BTM_Sub-Type_29,sub_type,2
|
||||
leather skirts,BTM_Sub-Type_30,sub_type,2
|
||||
long skirts,BTM_Sub-Type_31,sub_type,2
|
||||
low rise pants,BTM_Sub-Type_32,sub_type,2
|
||||
mini skirt,BTM_Sub-Type_33,sub_type,2
|
||||
panel kirt,BTM_Sub-Type_34,sub_type,2
|
||||
peg top skirt,BTM_Sub-Type_35,sub_type,2
|
||||
pencil pants,BTM_Sub-Type_36,sub_type,2
|
||||
shorts (denim),BTM_Sub-Type_37,sub_type,2
|
||||
skinny_cigarette pants,BTM_Sub-Type_38,sub_type,2
|
||||
split skirt,BTM_Sub-Type_39,sub_type,2
|
||||
stirrup,BTM_Sub-Type_40,sub_type,2
|
||||
stranget pants,BTM_Sub-Type_41,sub_type,2
|
||||
straight skirt,BTM_Sub-Type_42,sub_type,2
|
||||
wide leg pants,BTM_Sub-Type_43,sub_type,2
|
||||
wrap skirt,BTM_Sub-Type_44,sub_type,2
|
||||
Jeans,BTM_Sub-Type_45,sub_type,2
|
||||
Leggings,BTM_Sub-Type_46,sub_type,2
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Woven,attr_BTM_Structure_1,BTM_Structure,3
|
||||
Knit,attr_BTM_Structure_2,BTM_Structure,3
|
||||
Sweater,attr_BTM_Structure_3,BTM_Structure,3
|
||||
Woven,attr_BTM_Structure_1,structure,3
|
||||
Knit,attr_BTM_Structure_2,structure,3
|
||||
Sweater,attr_BTM_Structure_3,structure,3
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Short,attr_BTM_length_1,BTM_length,4
|
||||
Middle,attr_BTM_length_2,BTM_length,4
|
||||
Seven,attr_BTM_length_3,BTM_length,4
|
||||
Nine,attr_BTM_length_4,BTM_length,4
|
||||
Long,attr_BTM_length_5,BTM_length,4
|
||||
Short,attr_BTM_length_1,length,4
|
||||
Middle,attr_BTM_length_2,length,4
|
||||
Seven,attr_BTM_length_3,length,4
|
||||
Nine,attr_BTM_length_4,length,4
|
||||
Long,attr_BTM_length_5,length,4
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
abstract,attr_Print_B_1,Print_B,5
|
||||
allover,attr_Print_B_2,Print_B,5
|
||||
animal printed,attr_Print_B_3,Print_B,5
|
||||
Camouflage,attr_Print_B_4,Print_B,5
|
||||
checks,attr_Print_B_5,Print_B,5
|
||||
color_block,attr_Print_B_6,Print_B,5
|
||||
disty print,attr_Print_B_7,Print_B,5
|
||||
dotted,attr_Print_B_8,Print_B,5
|
||||
floral,attr_Print_B_9,Print_B,5
|
||||
graphic print,attr_Print_B_10,Print_B,5
|
||||
logo and slogan print,attr_Print_B_11,Print_B,5
|
||||
patchwork,attr_Print_B_12,Print_B,5
|
||||
plain,attr_Print_B_13,Print_B,5
|
||||
plain_dnim,attr_Print_B_14,Print_B,5
|
||||
stripe,attr_Print_B_15,Print_B,5
|
||||
abstract,attr_Print_B_1,print,5
|
||||
allover,attr_Print_B_2,print,5
|
||||
animal printed,attr_Print_B_3,print,5
|
||||
Camouflage,attr_Print_B_4,print,5
|
||||
checks,attr_Print_B_5,print,5
|
||||
color_block,attr_Print_B_6,print,5
|
||||
disty print,attr_Print_B_7,print,5
|
||||
dotted,attr_Print_B_8,print,5
|
||||
floral,attr_Print_B_9,print,5
|
||||
graphic print,attr_Print_B_10,print,5
|
||||
logo and slogan print,attr_Print_B_11,print,5
|
||||
patchwork,attr_Print_B_12,print,5
|
||||
plain,attr_Print_B_13,print,5
|
||||
plain_dnim,attr_Print_B_14,print,5
|
||||
stripe,attr_Print_B_15,print,5
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
canvas,attr_Material_B_1,Material_B,6
|
||||
chambray,attr_Material_B_2,Material_B,6
|
||||
chenille,attr_Material_B_3,Material_B,6
|
||||
chiffon,attr_Material_B_4,Material_B,6
|
||||
corduroy,attr_Material_B_5,Material_B,6
|
||||
crepe,attr_Material_B_6,Material_B,6
|
||||
denim,attr_Material_B_7,Material_B,6
|
||||
faux_fur,attr_Material_B_8,Material_B,6
|
||||
faux_leather,attr_Material_B_9,Material_B,6
|
||||
flannel,attr_Material_B_10,Material_B,6
|
||||
fleece,attr_Material_B_11,Material_B,6
|
||||
gingham,attr_Material_B_12,Material_B,6
|
||||
jersey,attr_Material_B_13,Material_B,6
|
||||
knit,attr_Material_B_14,Material_B,6
|
||||
lace,attr_Material_B_15,Material_B,6
|
||||
lawn,attr_Material_B_16,Material_B,6
|
||||
neoprene,attr_Material_B_17,Material_B,6
|
||||
organza,attr_Material_B_18,Material_B,6
|
||||
plush,attr_Material_B_19,Material_B,6
|
||||
satin,attr_Material_B_20,Material_B,6
|
||||
serge,attr_Material_B_21,Material_B,6
|
||||
taffeta,attr_Material_B_22,Material_B,6
|
||||
tulle,attr_Material_B_23,Material_B,6
|
||||
tweed,attr_Material_B_24,Material_B,6
|
||||
twill,attr_Material_B_25,Material_B,6
|
||||
velvet,attr_Material_B_26,Material_B,6
|
||||
vinyl,attr_Material_B_27,Material_B,6
|
||||
canvas,attr_Material_B_1,material,6
|
||||
chambray,attr_Material_B_2,material,6
|
||||
chenille,attr_Material_B_3,material,6
|
||||
chiffon,attr_Material_B_4,material,6
|
||||
corduroy,attr_Material_B_5,material,6
|
||||
crepe,attr_Material_B_6,material,6
|
||||
denim,attr_Material_B_7,material,6
|
||||
faux_fur,attr_Material_B_8,material,6
|
||||
faux_leather,attr_Material_B_9,material,6
|
||||
flannel,attr_Material_B_10,material,6
|
||||
fleece,attr_Material_B_11,material,6
|
||||
gingham,attr_Material_B_12,material,6
|
||||
jersey,attr_Material_B_13,material,6
|
||||
knit,attr_Material_B_14,material,6
|
||||
lace,attr_Material_B_15,material,6
|
||||
lawn,attr_Material_B_16,material,6
|
||||
neoprene,attr_Material_B_17,material,6
|
||||
organza,attr_Material_B_18,material,6
|
||||
plush,attr_Material_B_19,material,6
|
||||
satin,attr_Material_B_20,material,6
|
||||
serge,attr_Material_B_21,material,6
|
||||
taffeta,attr_Material_B_22,material,6
|
||||
tulle,attr_Material_B_23,material,6
|
||||
tweed,attr_Material_B_24,material,6
|
||||
twill,attr_Material_B_25,material,6
|
||||
velvet,attr_Material_B_26,material,6
|
||||
vinyl,attr_Material_B_27,material,6
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_B_1,Softness_B,7
|
||||
Medium,attr_Softness_B_2,Softness_B,7
|
||||
Hard,attr_Softness_B_3,Softness_B,7
|
||||
Soft,attr_Softness_B_1,softness,7
|
||||
Medium,attr_Softness_B_2,softness,7
|
||||
Hard,attr_Softness_B_3,softness,7
|
||||
|
||||
|
@@ -1,17 +1,17 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_B_1,Design_B,8
|
||||
Tiered,attr_Design_B_2,Design_B,8
|
||||
Tassel,attr_Design_B_3,Design_B,8
|
||||
Ruffle,attr_Design_B_4,Design_B,8
|
||||
Pleated,attr_Design_B_5,Design_B,8
|
||||
Wrap,attr_Design_B_6,Design_B,8
|
||||
Ripped,attr_Design_B_7,Design_B,8
|
||||
Cut out,attr_Design_B_8,Design_B,8
|
||||
Eyelet,attr_Design_B_9,Design_B,8
|
||||
Folded,attr_Design_B_10,Design_B,8
|
||||
Tied,attr_Design_B_11,Design_B,8
|
||||
Drapes,attr_Design_B_12,Design_B,8
|
||||
Ribbon,attr_Design_B_13,Design_B,8
|
||||
Button,attr_Design_B_14,Design_B,8
|
||||
Split,attr_Design_B_15,Design_B,8
|
||||
Fishtail,attr_Design_B_16,Design_B,8
|
||||
Asymmetrical,attr_Design_B_1,design,8
|
||||
Tiered,attr_Design_B_2,design,8
|
||||
Tassel,attr_Design_B_3,design,8
|
||||
Ruffle,attr_Design_B_4,design,8
|
||||
Pleated,attr_Design_B_5,design,8
|
||||
Wrap,attr_Design_B_6,design,8
|
||||
Ripped,attr_Design_B_7,design,8
|
||||
Cut out,attr_Design_B_8,design,8
|
||||
Eyelet,attr_Design_B_9,design,8
|
||||
Folded,attr_Design_B_10,design,8
|
||||
Tied,attr_Design_B_11,design,8
|
||||
Drapes,attr_Design_B_12,design,8
|
||||
Ribbon,attr_Design_B_13,design,8
|
||||
Button,attr_Design_B_14,design,8
|
||||
Split,attr_Design_B_15,design,8
|
||||
Fishtail,attr_Design_B_16,design,8
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_B_1,OPType_B,9
|
||||
Zipper,attr_OPType_B_2,OPType_B,9
|
||||
Thread,attr_OPType_B_3,OPType_B,9
|
||||
Hook,attr_OPType_B_4,OPType_B,9
|
||||
Elastic,attr_OPType_B_5,OPType_B,9
|
||||
Button,attr_OPType_B_1,opening_type,9
|
||||
Zipper,attr_OPType_B_2,opening_type,9
|
||||
Thread,attr_OPType_B_3,opening_type,9
|
||||
Hook,attr_OPType_B_4,opening_type,9
|
||||
Elastic,attr_OPType_B_5,opening_type,9
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line,attr_Silhouette_U_1,Silhouette_D,11
|
||||
H Shape,attr_Silhouette_U_2,Silhouette_D,11
|
||||
Slim,attr_Silhouette_U_3,Silhouette_D,11
|
||||
Oversized,attr_Silhouette_U_4,Silhouette_D,11
|
||||
Cacoon,attr_Silhouette_U_5,Silhouette_D,11
|
||||
Empire,attr_Silhouette_U_6,Silhouette_D,11
|
||||
Hourglass,attr_Silhouette_U_7,Silhouette_D,11
|
||||
Mermaid,attr_Silhouette_U_8,Silhouette_D,11
|
||||
Sheath,attr_Silhouette_U_9,Silhouette_D,11
|
||||
Tent,attr_Silhouette_U_10,Silhouette_D,11
|
||||
A Line,attr_Silhouette_U_1,silhouette,11
|
||||
H Shape,attr_Silhouette_U_2,silhouette,11
|
||||
Slim,attr_Silhouette_U_3,silhouette,11
|
||||
Oversized,attr_Silhouette_U_4,silhouette,11
|
||||
Cacoon,attr_Silhouette_U_5,silhouette,11
|
||||
Empire,attr_Silhouette_U_6,silhouette,11
|
||||
Hourglass,attr_Silhouette_U_7,silhouette,11
|
||||
Mermaid,attr_Silhouette_U_8,silhouette,11
|
||||
Sheath,attr_Silhouette_U_9,silhouette,11
|
||||
Tent,attr_Silhouette_U_10,silhouette,11
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_U_1,OPType_D,11
|
||||
Zipper,attr_OPType_U_2,OPType_D,11
|
||||
Thread,attr_OPType_U_3,OPType_D,11
|
||||
Hook,attr_OPType_U_4,OPType_D,11
|
||||
Button,attr_OPType_U_1,opening_type,11
|
||||
Zipper,attr_OPType_U_2,opening_type,11
|
||||
Thread,attr_OPType_U_3,opening_type,11
|
||||
Hook,attr_OPType_U_4,opening_type,11
|
||||
|
||||
|
@@ -1,20 +1,20 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Evening gown,attr_dresstype_1,Dress_Type,12
|
||||
Shirt-dress,attr_dresstype_2,Dress_Type,12
|
||||
Coat dress,attr_dresstype_3,Dress_Type,12
|
||||
Handkerchief dress,attr_dresstype_4,Dress_Type,12
|
||||
Jumper dress,attr_dresstype_5,Dress_Type,12
|
||||
Dungaree dress,attr_dresstype_6,Dress_Type,12
|
||||
Skater dress,attr_dresstype_7,Dress_Type,12
|
||||
Tea dress,attr_dresstype_8,Dress_Type,12
|
||||
Mermaid dress,attr_dresstype_9,Dress_Type,12
|
||||
Cocktail dress,attr_dresstype_10,Dress_Type,12
|
||||
A-Line dress,attr_dresstype_11,Dress_Type,12
|
||||
Bodycon dress,attr_dresstype_12,Dress_Type,12
|
||||
Maxi dress,attr_dresstype_13,Dress_Type,12
|
||||
Office dress,attr_dresstype_14,Dress_Type,12
|
||||
Pencil dress,attr_dresstype_15,Dress_Type,12
|
||||
Sheer dress,attr_dresstype_16,Dress_Type,12
|
||||
Shift dress,attr_dresstype_17,Dress_Type,12
|
||||
Slip dress,attr_dresstype_18,Dress_Type,12
|
||||
T-shirt dress,attr_dresstype_19,Dress_Type,12
|
||||
Evening gown,attr_dresstype_1,dress_type,12
|
||||
Shirt-dress,attr_dresstype_2,dress_type,12
|
||||
Coat dress,attr_dresstype_3,dress_type,12
|
||||
Handkerchief dress,attr_dresstype_4,dress_type,12
|
||||
Jumper dress,attr_dresstype_5,dress_type,12
|
||||
Dungaree dress,attr_dresstype_6,dress_type,12
|
||||
Skater dress,attr_dresstype_7,dress_type,12
|
||||
Tea dress,attr_dresstype_8,dress_type,12
|
||||
Mermaid dress,attr_dresstype_9,dress_type,12
|
||||
Cocktail dress,attr_dresstype_10,dress_type,12
|
||||
A-Line dress,attr_dresstype_11,dress_type,12
|
||||
Bodycon dress,attr_dresstype_12,dress_type,12
|
||||
Maxi dress,attr_dresstype_13,dress_type,12
|
||||
Office dress,attr_dresstype_14,dress_type,12
|
||||
Pencil dress,attr_dresstype_15,dress_type,12
|
||||
Sheer dress,attr_dresstype_16,dress_type,12
|
||||
Shift dress,attr_dresstype_17,dress_type,12
|
||||
Slip dress,attr_dresstype_18,dress_type,12
|
||||
T-shirt dress,attr_dresstype_19,dress_type,12
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Maxi,attr_Dress_length_1,Dress_length,1
|
||||
Midi,attr_Dress_length_2,Dress_length,1
|
||||
Mini,attr_Dress_length_3,Dress_length,1
|
||||
Over the knee,attr_Dress_length_4,Dress_length,1
|
||||
Floor Length,attr_Dress_length_5,Dress_length,1
|
||||
Maxi,attr_Dress_length_1,dress_length,1
|
||||
Midi,attr_Dress_length_2,dress_length,1
|
||||
Mini,attr_Dress_length_3,dress_length,1
|
||||
Over the knee,attr_Dress_length_4,dress_length,1
|
||||
Floor Length,attr_Dress_length_5,dress_length,1
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Sleeveless,attr_Sleeve_length_1,Sleeve_length,3
|
||||
Short,attr_Sleeve_length_2,Sleeve_length,3
|
||||
Middle,attr_Sleeve_length_3,Sleeve_length,3
|
||||
Seven,attr_Sleeve_length_4,Sleeve_length,3
|
||||
Long,attr_Sleeve_length_5,Sleeve_length,3
|
||||
Sleeveless,attr_Sleeve_length_1,sleeve_length,3
|
||||
Short,attr_Sleeve_length_2,sleeve_length,3
|
||||
Middle,attr_Sleeve_length_3,sleeve_length,3
|
||||
Seven,attr_Sleeve_length_4,sleeve_length,3
|
||||
Long,attr_Sleeve_length_5,sleeve_length,3
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shape_1,Sleeve_shape,4
|
||||
Slim,attr_Sleeve_shape_2,Sleeve_shape,4
|
||||
Puff,attr_Sleeve_shape_3,Sleeve_shape,4
|
||||
Bell,attr_Sleeve_shape_4,Sleeve_shape,4
|
||||
Batwing,attr_Sleeve_shape_5,Sleeve_shape,4
|
||||
Shirt,attr_Sleeve_shape_6,Sleeve_shape,4
|
||||
Rib,attr_Sleeve_shape_7,Sleeve_shape,4
|
||||
Raglan,attr_Sleeve_shape_8,Sleeve_shape,4
|
||||
Regular,attr_Sleeve_shape_1,sleeve_shape,4
|
||||
Slim,attr_Sleeve_shape_2,sleeve_shape,4
|
||||
Puff,attr_Sleeve_shape_3,sleeve_shape,4
|
||||
Bell,attr_Sleeve_shape_4,sleeve_shape,4
|
||||
Batwing,attr_Sleeve_shape_5,sleeve_shape,4
|
||||
Shirt,attr_Sleeve_shape_6,sleeve_shape,4
|
||||
Rib,attr_Sleeve_shape_7,sleeve_shape,4
|
||||
Raglan,attr_Sleeve_shape_8,sleeve_shape,4
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shoulder_1,Sleeve_shoulder,5
|
||||
Cold,attr_Sleeve_shoulder_2,Sleeve_shoulder,5
|
||||
Tucked,attr_Sleeve_shoulder_3,Sleeve_shoulder,5
|
||||
Balmain,attr_Sleeve_shoulder_4,Sleeve_shoulder,5
|
||||
Regular,attr_Sleeve_shoulder_1,sleeve_shoulder,5
|
||||
Cold,attr_Sleeve_shoulder_2,sleeve_shoulder,5
|
||||
Tucked,attr_Sleeve_shoulder_3,sleeve_shoulder,5
|
||||
Balmain,attr_Sleeve_shoulder_4,sleeve_shoulder,5
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Round,attr_Neckline_1,Neckline,6
|
||||
V,attr_Neckline_2,Neckline,6
|
||||
Square,attr_Neckline_3,Neckline,6
|
||||
One-shoulder,attr_Neckline_4,Neckline,6
|
||||
Off-shoulder,attr_Neckline_5,Neckline,6
|
||||
Strapless,attr_Neckline_6,Neckline,6
|
||||
Round,attr_Neckline_1,neckline,6
|
||||
V,attr_Neckline_2,neckline,6
|
||||
Square,attr_Neckline_3,neckline,6
|
||||
One-shoulder,attr_Neckline_4,neckline,6
|
||||
Off-shoulder,attr_Neckline_5,neckline,6
|
||||
Strapless,attr_Neckline_6,neckline,6
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Abstract,attr_Print_O_1,Print_D,7
|
||||
Allover,attr_Print_O_2,Print_D,7
|
||||
Animal,attr_Print_O_3,Print_D,7
|
||||
Camouflage,attr_Print_O_4,Print_D,7
|
||||
Checks,attr_Print_O_5,Print_D,7
|
||||
Color_block,attr_Print_O_6,Print_D,7
|
||||
Disty print,attr_Print_O_7,Print_D,7
|
||||
Dotted,attr_Print_O_8,Print_D,7
|
||||
Floral,attr_Print_O_9,Print_D,7
|
||||
Graphic print,attr_Print_O_10,Print_D,7
|
||||
Logo and slogan,attr_Print_O_11,Print_D,7
|
||||
Patchwork,attr_Print_O_12,Print_D,7
|
||||
Plain,attr_Print_O_13,Print_D,7
|
||||
Plain_dnim,attr_Print_O_14,Print_D,7
|
||||
Stripe,attr_Print_O_15,Print_D,7
|
||||
Abstract,attr_Print_O_1,print,7
|
||||
Allover,attr_Print_O_2,print,7
|
||||
Animal,attr_Print_O_3,print,7
|
||||
Camouflage,attr_Print_O_4,print,7
|
||||
Checks,attr_Print_O_5,print,7
|
||||
Color_block,attr_Print_O_6,print,7
|
||||
Disty print,attr_Print_O_7,print,7
|
||||
Dotted,attr_Print_O_8,print,7
|
||||
Floral,attr_Print_O_9,print,7
|
||||
Graphic print,attr_Print_O_10,print,7
|
||||
Logo and slogan,attr_Print_O_11,print,7
|
||||
Patchwork,attr_Print_O_12,print,7
|
||||
Plain,attr_Print_O_13,print,7
|
||||
Plain_dnim,attr_Print_O_14,print,7
|
||||
Stripe,attr_Print_O_15,print,7
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peterpan,attr_Collar_1,Collar,7
|
||||
Shirt,attr_Collar_2,Collar,7
|
||||
Rib,attr_Collar_3,Collar,7
|
||||
Turtle,attr_Collar_4,Collar,7
|
||||
Lapel,attr_Collar_5,Collar,7
|
||||
Hoodie,attr_Collar_6,Collar,7
|
||||
Mandarin,attr_Collar_7,Collar,7
|
||||
Tie,attr_Collar_8,Collar,7
|
||||
Ruffle,attr_Collar_9,Collar,7
|
||||
Cowl,attr_Collar_10,Collar,7
|
||||
Peterpan,attr_Collar_1,collar,7
|
||||
Shirt,attr_Collar_2,collar,7
|
||||
Rib,attr_Collar_3,collar,7
|
||||
Turtle,attr_Collar_4,collar,7
|
||||
Lapel,attr_Collar_5,collar,7
|
||||
Hoodie,attr_Collar_6,collar,7
|
||||
Mandarin,attr_Collar_7,collar,7
|
||||
Tie,attr_Collar_8,collar,7
|
||||
Ruffle,attr_Collar_9,collar,7
|
||||
Cowl,attr_Collar_10,collar,7
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Canvas,attr_Material_O_1,Material_D,8
|
||||
Chambray,attr_Material_O_2,Material_D,8
|
||||
Chenille,attr_Material_O_3,Material_D,8
|
||||
Chiffon,attr_Material_O_4,Material_D,8
|
||||
Corduroy,attr_Material_O_5,Material_D,8
|
||||
Crepe,attr_Material_O_6,Material_D,8
|
||||
Denim,attr_Material_O_7,Material_D,8
|
||||
Faux_fur,attr_Material_O_8,Material_D,8
|
||||
Faux_leather,attr_Material_O_9,Material_D,8
|
||||
Flannel,attr_Material_O_10,Material_D,8
|
||||
Fleece,attr_Material_O_11,Material_D,8
|
||||
Gingham,attr_Material_O_12,Material_D,8
|
||||
Jersey,attr_Material_O_13,Material_D,8
|
||||
Knit,attr_Material_O_14,Material_D,8
|
||||
Lace,attr_Material_O_15,Material_D,8
|
||||
Lawn,attr_Material_O_16,Material_D,8
|
||||
Neoprene,attr_Material_O_17,Material_D,8
|
||||
Organza,attr_Material_O_18,Material_D,8
|
||||
Plush,attr_Material_O_19,Material_D,8
|
||||
Satin,attr_Material_O_20,Material_D,8
|
||||
Serge,attr_Material_O_21,Material_D,8
|
||||
Taffeta,attr_Material_O_22,Material_D,8
|
||||
Tulle,attr_Material_O_23,Material_D,8
|
||||
Tweed,attr_Material_O_24,Material_D,8
|
||||
Twill,attr_Material_O_25,Material_D,8
|
||||
Velvet,attr_Material_O_26,Material_D,8
|
||||
Vinyl,attr_Material_O_27,Material_D,8
|
||||
Canvas,attr_Material_O_1,design,8
|
||||
Chambray,attr_Material_O_2,design,8
|
||||
Chenille,attr_Material_O_3,design,8
|
||||
Chiffon,attr_Material_O_4,design,8
|
||||
Corduroy,attr_Material_O_5,design,8
|
||||
Crepe,attr_Material_O_6,design,8
|
||||
Denim,attr_Material_O_7,design,8
|
||||
Faux_fur,attr_Material_O_8,design,8
|
||||
Faux_leather,attr_Material_O_9,design,8
|
||||
Flannel,attr_Material_O_10,design,8
|
||||
Fleece,attr_Material_O_11,design,8
|
||||
Gingham,attr_Material_O_12,design,8
|
||||
Jersey,attr_Material_O_13,design,8
|
||||
Knit,attr_Material_O_14,design,8
|
||||
Lace,attr_Material_O_15,design,8
|
||||
Lawn,attr_Material_O_16,design,8
|
||||
Neoprene,attr_Material_O_17,design,8
|
||||
Organza,attr_Material_O_18,design,8
|
||||
Plush,attr_Material_O_19,design,8
|
||||
Satin,attr_Material_O_20,design,8
|
||||
Serge,attr_Material_O_21,design,8
|
||||
Taffeta,attr_Material_O_22,design,8
|
||||
Tulle,attr_Material_O_23,design,8
|
||||
Tweed,attr_Material_O_24,design,8
|
||||
Twill,attr_Material_O_25,design,8
|
||||
Velvet,attr_Material_O_26,design,8
|
||||
Vinyl,attr_Material_O_27,design,8
|
||||
|
||||
|
@@ -1,19 +1,19 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_U_1,Design_D,9
|
||||
Tiered,attr_Design_U_2,Design_D,9
|
||||
Tassel,attr_Design_U_3,Design_D,9
|
||||
Ruffle,attr_Design_U_4,Design_D,9
|
||||
Pleated,attr_Design_U_5,Design_D,9
|
||||
Wrap,attr_Design_U_6,Design_D,9
|
||||
Ripped,attr_Design_U_7,Design_D,9
|
||||
Cut out,attr_Design_U_8,Design_D,9
|
||||
Eyelet,attr_Design_U_9,Design_D,9
|
||||
Folded,attr_Design_U_10,Design_D,9
|
||||
Tied,attr_Design_U_11,Design_D,9
|
||||
Drapes,attr_Design_U_12,Design_D,9
|
||||
Ribbon,attr_Design_U_13,Design_D,9
|
||||
Button,attr_Design_U_14,Design_D,9
|
||||
Split,attr_Design_U_15,Design_D,9
|
||||
Fishtail,attr_Design_U_16,Design_D,9
|
||||
Cami dress,attr_Design_U_17,Design_D,9
|
||||
Gathering,attr_Design_U_18,Design_D,9
|
||||
Asymmetrical,attr_Design_U_1,design,9
|
||||
Tiered,attr_Design_U_2,design,9
|
||||
Tassel,attr_Design_U_3,design,9
|
||||
Ruffle,attr_Design_U_4,design,9
|
||||
Pleated,attr_Design_U_5,design,9
|
||||
Wrap,attr_Design_U_6,design,9
|
||||
Ripped,attr_Design_U_7,design,9
|
||||
Cut out,attr_Design_U_8,design,9
|
||||
Eyelet,attr_Design_U_9,design,9
|
||||
Folded,attr_Design_U_10,design,9
|
||||
Tied,attr_Design_U_11,design,9
|
||||
Drapes,attr_Design_U_12,design,9
|
||||
Ribbon,attr_Design_U_13,design,9
|
||||
Button,attr_Design_U_14,design,9
|
||||
Split,attr_Design_U_15,design,9
|
||||
Fishtail,attr_Design_U_16,design,9
|
||||
Cami dress,attr_Design_U_17,design,9
|
||||
Gathering,attr_Design_U_18,design,9
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_U_1,Softness_D,9
|
||||
Medium,attr_Softness_U_2,Softness_D,9
|
||||
Hard,attr_Softness_U_3,Softness_D,9
|
||||
Soft,attr_Softness_U_1,softness,9
|
||||
Medium,attr_Softness_U_2,softness,9
|
||||
Hard,attr_Softness_U_3,softness,9
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_D_1,Design_D,10
|
||||
Tiered,attr_Design_D_2,Design_D,10
|
||||
Tassel,attr_Design_D_3,Design_D,10
|
||||
Ruffle,attr_Design_D_4,Design_D,10
|
||||
Pleated,attr_Design_D_5,Design_D,10
|
||||
Wrap,attr_Design_D_6,Design_D,10
|
||||
Ripped,attr_Design_D_7,Design_D,10
|
||||
Cut out,attr_Design_D_8,Design_D,10
|
||||
Eyelet,attr_Design_D_9,Design_D,10
|
||||
Folded,attr_Design_D_10,Design_D,10
|
||||
Tied,attr_Design_D_11,Design_D,10
|
||||
Drapes,attr_Design_D_12,Design_D,10
|
||||
Ribbon,attr_Design_D_13,Design_D,10
|
||||
Button,attr_Design_D_14,Design_D,10
|
||||
Gathering,attr_Design_D_15,Design_D,10
|
||||
Asymmetrical,attr_Design_D_1,design,10
|
||||
Tiered,attr_Design_D_2,design,10
|
||||
Tassel,attr_Design_D_3,design,10
|
||||
Ruffle,attr_Design_D_4,design,10
|
||||
Pleated,attr_Design_D_5,design,10
|
||||
Wrap,attr_Design_D_6,design,10
|
||||
Ripped,attr_Design_D_7,design,10
|
||||
Cut out,attr_Design_D_8,design,10
|
||||
Eyelet,attr_Design_D_9,design,10
|
||||
Folded,attr_Design_D_10,design,10
|
||||
Tied,attr_Design_D_11,design,10
|
||||
Drapes,attr_Design_D_12,design,10
|
||||
Ribbon,attr_Design_D_13,design,10
|
||||
Button,attr_Design_D_14,design,10
|
||||
Gathering,attr_Design_D_15,design,10
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_D_1,OPType_D,11
|
||||
Zipper,attr_OPType_D_2,OPType_D,11
|
||||
Thread,attr_OPType_D_3,OPType_D,11
|
||||
Hook,attr_OPType_D_4,OPType_D,11
|
||||
Button,attr_OPType_D_1,opening_type,11
|
||||
Zipper,attr_OPType_D_2,opening_type,11
|
||||
Thread,attr_OPType_D_3,opening_type,11
|
||||
Hook,attr_OPType_D_4,opening_type,11
|
||||
|
||||
|
@@ -8,4 +8,4 @@ Empire,attr_Silhouette_D_6,Silhouette_D,12
|
||||
Hourglass,attr_Silhouette_D_7,Silhouette_D,12
|
||||
Mermaid,attr_Silhouette_D_8,Silhouette_D,12
|
||||
Sheath,attr_Silhouette_D_9,Silhouette_D,12
|
||||
Tent,attr_Silhouette_D_10,Silhouette_D,12
|
||||
Tent,attr_Silhouette_D_10,silhouette,12
|
||||
|
||||
|
@@ -1,20 +1,20 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Evening gown,attr_Dress_Type_1,Dress_Type,13
|
||||
Shirt-dress,attr_Dress_Type_2,Dress_Type,13
|
||||
Coat dress,attr_Dress_Type_3,Dress_Type,13
|
||||
Handkerchief dress,attr_Dress_Type_4,Dress_Type,13
|
||||
Jumper dress,attr_Dress_Type_5,Dress_Type,13
|
||||
Dungaree dress,attr_Dress_Type_6,Dress_Type,13
|
||||
Skater dress,attr_Dress_Type_7,Dress_Type,13
|
||||
Tea dress,attr_Dress_Type_8,Dress_Type,13
|
||||
Mermaid dress,attr_Dress_Type_9,Dress_Type,13
|
||||
Cocktail dress,attr_Dress_Type_10,Dress_Type,13
|
||||
A-Line dress,attr_Dress_Type_11,Dress_Type,13
|
||||
Bodycon dress,attr_Dress_Type_12,Dress_Type,13
|
||||
Maxi dress,attr_Dress_Type_13,Dress_Type,13
|
||||
Office dress,attr_Dress_Type_14,Dress_Type,13
|
||||
Pencil dress,attr_Dress_Type_15,Dress_Type,13
|
||||
Sheer dress,attr_Dress_Type_16,Dress_Type,13
|
||||
Shift dress,attr_Dress_Type_17,Dress_Type,13
|
||||
Slip dress,attr_Dress_Type_18,Dress_Type,13
|
||||
T-shirt dress,attr_Dress_Type_19,Dress_Type,13
|
||||
Evening gown,attr_Dress_Type_1,dress_type,13
|
||||
Shirt-dress,attr_Dress_Type_2,dress_type,13
|
||||
Coat dress,attr_Dress_Type_3,dress_type,13
|
||||
Handkerchief dress,attr_Dress_Type_4,dress_type,13
|
||||
Jumper dress,attr_Dress_Type_5,dress_type,13
|
||||
Dungaree dress,attr_Dress_Type_6,dress_type,13
|
||||
Skater dress,attr_Dress_Type_7,dress_type,13
|
||||
Tea dress,attr_Dress_Type_8,dress_type,13
|
||||
Mermaid dress,attr_Dress_Type_9,dress_type,13
|
||||
Cocktail dress,attr_Dress_Type_10,dress_type,13
|
||||
A-Line dress,attr_Dress_Type_11,dress_type,13
|
||||
Bodycon dress,attr_Dress_Type_12,dress_type,13
|
||||
Maxi dress,attr_Dress_Type_13,dress_type,13
|
||||
Office dress,attr_Dress_Type_14,dress_type,13
|
||||
Pencil dress,attr_Dress_Type_15,dress_type,13
|
||||
Sheer dress,attr_Dress_Type_16,dress_type,13
|
||||
Shift dress,attr_Dress_Type_17,dress_type,13
|
||||
Slip dress,attr_Dress_Type_18,dress_type,13
|
||||
T-shirt dress,attr_Dress_Type_19,dress_type,13
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Maxi,attr_Dress_length_1,Dress_length,1
|
||||
Midi,attr_Dress_length_2,Dress_length,1
|
||||
Mini,attr_Dress_length_3,Dress_length,1
|
||||
Over the knee,attr_Dress_length_4,Dress_length,1
|
||||
Floor Length,attr_Dress_length_5,Dress_length,1
|
||||
Maxi,attr_Dress_length_1,dress_length,1
|
||||
Midi,attr_Dress_length_2,dress_length,1
|
||||
Mini,attr_Dress_length_3,dress_length,1
|
||||
Over the knee,attr_Dress_length_4,dress_length,1
|
||||
Floor Length,attr_Dress_length_5,dress_length,1
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Sleeveless,attr_Sleeve_length_D_1,Sleeve_length_D,2
|
||||
Short,attr_Sleeve_length_D_2,Sleeve_length_D,2
|
||||
Middle,attr_Sleeve_length_D_3,Sleeve_length_D,2
|
||||
Seven,attr_Sleeve_length_D_4,Sleeve_length_D,2
|
||||
Long,attr_Sleeve_length_D_5,Sleeve_length_D,2
|
||||
Sleeveless,attr_Sleeve_length_D_1,sleeve_length,2
|
||||
Short,attr_Sleeve_length_D_2,sleeve_length,2
|
||||
Middle,attr_Sleeve_length_D_3,sleeve_length,2
|
||||
Seven,attr_Sleeve_length_D_4,sleeve_length,2
|
||||
Long,attr_Sleeve_length_D_5,sleeve_length,2
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shape_D_1,Sleeve_shape_D,3
|
||||
Slim,attr_Sleeve_shape_D_2,Sleeve_shape_D,3
|
||||
Puff,attr_Sleeve_shape_D_3,Sleeve_shape_D,3
|
||||
Bell,attr_Sleeve_shape_D_4,Sleeve_shape_D,3
|
||||
Batwing,attr_Sleeve_shape_D_5,Sleeve_shape_D,3
|
||||
Shirt,attr_Sleeve_shape_D_6,Sleeve_shape_D,3
|
||||
Rib,attr_Sleeve_shape_D_7,Sleeve_shape_D,3
|
||||
Raglan,attr_Sleeve_shape_D_8,Sleeve_shape_D,3
|
||||
Regular,attr_Sleeve_shape_D_1,sleeve_shape,3
|
||||
Slim,attr_Sleeve_shape_D_2,sleeve_shape,3
|
||||
Puff,attr_Sleeve_shape_D_3,sleeve_shape,3
|
||||
Bell,attr_Sleeve_shape_D_4,sleeve_shape,3
|
||||
Batwing,attr_Sleeve_shape_D_5,sleeve_shape,3
|
||||
Shirt,attr_Sleeve_shape_D_6,sleeve_shape,3
|
||||
Rib,attr_Sleeve_shape_D_7,sleeve_shape,3
|
||||
Raglan,attr_Sleeve_shape_D_8,sleeve_shape,3
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shoulder_D_1,Sleeve_shoulder_D,4
|
||||
Cold,attr_Sleeve_shoulder_D_2,Sleeve_shoulder_D,4
|
||||
Tucked,attr_Sleeve_shoulder_D_3,Sleeve_shoulder_D,4
|
||||
Balmain,attr_Sleeve_shoulder_D_4,Sleeve_shoulder_D,4
|
||||
Regular,attr_Sleeve_shoulder_D_1,sleeve_shoulder,4
|
||||
Cold,attr_Sleeve_shoulder_D_2,sleeve_shoulder,4
|
||||
Tucked,attr_Sleeve_shoulder_D_3,sleeve_shoulder,4
|
||||
Balmain,attr_Sleeve_shoulder_D_4,sleeve_shoulder,4
|
||||
|
||||
|
@@ -1,17 +1,17 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Round,attr_Neckline_D_1,Neckline_D,5
|
||||
V,attr_Neckline_D_2,Neckline_D,5
|
||||
Square,attr_Neckline_D_3,Neckline_D,5
|
||||
One-shoulder,attr_Neckline_D_4,Neckline_D,5
|
||||
Off-shoulder,attr_Neckline_D_5,Neckline_D,5
|
||||
Strapless,attr_Neckline_D_6,Neckline_D,5
|
||||
Turtle,attr_Neckline_D_7,Neckline_D,5
|
||||
Boat,attr_Neckline_D_8,Neckline_D,5
|
||||
Halter,attr_Neckline_D_9,Neckline_D,5
|
||||
Spaghetti Strap,attr_Neckline_D_10,Neckline_D,5
|
||||
Sweetheart,attr_Neckline_D_11,Neckline_D,5
|
||||
U,attr_Neckline_D_12,Neckline_D,5
|
||||
choker,attr_Neckline_D_13,Neckline_D,5
|
||||
cowl,attr_Neckline_D_14,Neckline_D,5
|
||||
keyhole,attr_Neckline_D_15,Neckline_D,5
|
||||
split,attr_Neckline_D_16,Neckline_D,5
|
||||
Round,attr_Neckline_D_1,neckline,5
|
||||
V,attr_Neckline_D_2,neckline,5
|
||||
Square,attr_Neckline_D_3,neckline,5
|
||||
One-shoulder,attr_Neckline_D_4,neckline,5
|
||||
Off-shoulder,attr_Neckline_D_5,neckline,5
|
||||
Strapless,attr_Neckline_D_6,neckline,5
|
||||
Turtle,attr_Neckline_D_7,neckline,5
|
||||
Boat,attr_Neckline_D_8,neckline,5
|
||||
Halter,attr_Neckline_D_9,neckline,5
|
||||
Spaghetti Strap,attr_Neckline_D_10,neckline,5
|
||||
Sweetheart,attr_Neckline_D_11,neckline,5
|
||||
U,attr_Neckline_D_12,neckline,5
|
||||
choker,attr_Neckline_D_13,neckline,5
|
||||
cowl,attr_Neckline_D_14,neckline,5
|
||||
keyhole,attr_Neckline_D_15,neckline,5
|
||||
split,attr_Neckline_D_16,neckline,5
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peterpan-Bertha,attr_Collar_D_1,Collar_D,6
|
||||
Shirt,attr_Collar_D_2,Collar_D,6
|
||||
Rib,attr_Collar_D_3,Collar_D,6
|
||||
Turtle,attr_Collar_D_4,Collar_D,6
|
||||
Lapel,attr_Collar_D_5,Collar_D,6
|
||||
Hoodie,attr_Collar_D_6,Collar_D,6
|
||||
Mandarin,attr_Collar_D_7,Collar_D,6
|
||||
Tie,attr_Collar_D_8,Collar_D,6
|
||||
Ruffle,attr_Collar_D_9,Collar_D,6
|
||||
Cowl,attr_Collar_D_10,Collar_D,6
|
||||
Peterpan-Bertha,attr_Collar_D_1,collar,6
|
||||
Shirt,attr_Collar_D_2,collar,6
|
||||
Rib,attr_Collar_D_3,collar,6
|
||||
Turtle,attr_Collar_D_4,collar,6
|
||||
Lapel,attr_Collar_D_5,collar,6
|
||||
Hoodie,attr_Collar_D_6,collar,6
|
||||
Mandarin,attr_Collar_D_7,collar,6
|
||||
Tie,attr_Collar_D_8,collar,6
|
||||
Ruffle,attr_Collar_D_9,collar,6
|
||||
Cowl,attr_Collar_D_10,collar,6
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
abstract,attr_Print_D_1,Print_D,7
|
||||
allover,attr_Print_D_2,Print_D,7
|
||||
animal printed,attr_Print_D_3,Print_D,7
|
||||
Camouflage,attr_Print_D_4,Print_D,7
|
||||
checks,attr_Print_D_5,Print_D,7
|
||||
color_block,attr_Print_D_6,Print_D,7
|
||||
disty print,attr_Print_D_7,Print_D,7
|
||||
dotted,attr_Print_D_8,Print_D,7
|
||||
floral,attr_Print_D_9,Print_D,7
|
||||
graphic print,attr_Print_D_10,Print_D,7
|
||||
logo and slogan print,attr_Print_D_11,Print_D,7
|
||||
patchwork,attr_Print_D_12,Print_D,7
|
||||
plain,attr_Print_D_13,Print_D,7
|
||||
plain_dnim,attr_Print_D_14,Print_D,7
|
||||
stripe,attr_Print_D_15,Print_D,7
|
||||
abstract,attr_Print_D_1,print,7
|
||||
allover,attr_Print_D_2,print,7
|
||||
animal printed,attr_Print_D_3,print,7
|
||||
Camouflage,attr_Print_D_4,print,7
|
||||
checks,attr_Print_D_5,print,7
|
||||
color_block,attr_Print_D_6,print,7
|
||||
disty print,attr_Print_D_7,print,7
|
||||
dotted,attr_Print_D_8,print,7
|
||||
floral,attr_Print_D_9,print,7
|
||||
graphic print,attr_Print_D_10,print,7
|
||||
logo and slogan print,attr_Print_D_11,print,7
|
||||
patchwork,attr_Print_D_12,print,7
|
||||
plain,attr_Print_D_13,print,7
|
||||
plain_dnim,attr_Print_D_14,print,7
|
||||
stripe,attr_Print_D_15,print,7
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
canvas,attr_Material_D_1,Material_D,8
|
||||
chambray,attr_Material_D_2,Material_D,8
|
||||
chenille,attr_Material_D_3,Material_D,8
|
||||
chiffon,attr_Material_D_4,Material_D,8
|
||||
corduroy,attr_Material_D_5,Material_D,8
|
||||
crepe,attr_Material_D_6,Material_D,8
|
||||
denim,attr_Material_D_7,Material_D,8
|
||||
faux_fur,attr_Material_D_8,Material_D,8
|
||||
faux_leather,attr_Material_D_9,Material_D,8
|
||||
flannel,attr_Material_D_10,Material_D,8
|
||||
fleece,attr_Material_D_11,Material_D,8
|
||||
gingham,attr_Material_D_12,Material_D,8
|
||||
jersey,attr_Material_D_13,Material_D,8
|
||||
knit,attr_Material_D_14,Material_D,8
|
||||
lace,attr_Material_D_15,Material_D,8
|
||||
lawn,attr_Material_D_16,Material_D,8
|
||||
neoprene,attr_Material_D_17,Material_D,8
|
||||
organza,attr_Material_D_18,Material_D,8
|
||||
plush,attr_Material_D_19,Material_D,8
|
||||
satin,attr_Material_D_20,Material_D,8
|
||||
serge,attr_Material_D_21,Material_D,8
|
||||
taffeta,attr_Material_D_22,Material_D,8
|
||||
tulle,attr_Material_D_23,Material_D,8
|
||||
tweed,attr_Material_D_24,Material_D,8
|
||||
twill,attr_Material_D_25,Material_D,8
|
||||
velvet,attr_Material_D_26,Material_D,8
|
||||
vinyl,attr_Material_D_27,Material_D,8
|
||||
canvas,attr_Material_D_1,material,8
|
||||
chambray,attr_Material_D_2,material,8
|
||||
chenille,attr_Material_D_3,material,8
|
||||
chiffon,attr_Material_D_4,material,8
|
||||
corduroy,attr_Material_D_5,material,8
|
||||
crepe,attr_Material_D_6,material,8
|
||||
denim,attr_Material_D_7,material,8
|
||||
faux_fur,attr_Material_D_8,material,8
|
||||
faux_leather,attr_Material_D_9,material,8
|
||||
flannel,attr_Material_D_10,material,8
|
||||
fleece,attr_Material_D_11,material,8
|
||||
gingham,attr_Material_D_12,material,8
|
||||
jersey,attr_Material_D_13,material,8
|
||||
knit,attr_Material_D_14,material,8
|
||||
lace,attr_Material_D_15,material,8
|
||||
lawn,attr_Material_D_16,material,8
|
||||
neoprene,attr_Material_D_17,material,8
|
||||
organza,attr_Material_D_18,material,8
|
||||
plush,attr_Material_D_19,material,8
|
||||
satin,attr_Material_D_20,material,8
|
||||
serge,attr_Material_D_21,material,8
|
||||
taffeta,attr_Material_D_22,material,8
|
||||
tulle,attr_Material_D_23,material,8
|
||||
tweed,attr_Material_D_24,material,8
|
||||
twill,attr_Material_D_25,material,8
|
||||
velvet,attr_Material_D_26,material,8
|
||||
vinyl,attr_Material_D_27,material,8
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_D_1,Softness_D,9
|
||||
Medium,attr_Softness_D_2,Softness_D,9
|
||||
Hard,attr_Softness_D_3,Softness_D,9
|
||||
Soft,attr_Softness_D_1,softness,9
|
||||
Medium,attr_Softness_D_2,softness,9
|
||||
Hard,attr_Softness_D_3,softness,9
|
||||
|
||||
|
@@ -1,17 +1,17 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_J_1,Design_J,9
|
||||
Tassel,attr_Design_J_2,Design_J,9
|
||||
Ruffle,attr_Design_J_3,Design_J,9
|
||||
Pleated,attr_Design_J_4,Design_J,9
|
||||
Wrap,attr_Design_J_5,Design_J,9
|
||||
Cut out,attr_Design_J_6,Design_J,9
|
||||
Tied,attr_Design_J_7,Design_J,9
|
||||
Drapes,attr_Design_J_8,Design_J,9
|
||||
Ribbon,attr_Design_J_9,Design_J,9
|
||||
Button,attr_Design_J_10,Design_J,9
|
||||
Cami,attr_Design_J_11,Design_J,9
|
||||
Gathering,attr_Design_J_12,Design_J,9
|
||||
Pocket,attr_Design_J_13,Design_J,9
|
||||
Dungaree,attr_Design_J_14,Design_J,9
|
||||
Layering,attr_Design_J_15,Design_J,9
|
||||
Belted,attr_Design_J_16,Design_J,9
|
||||
Asymmetrical,attr_Design_J_1,design,9
|
||||
Tassel,attr_Design_J_2,design,9
|
||||
Ruffle,attr_Design_J_3,design,9
|
||||
Pleated,attr_Design_J_4,design,9
|
||||
Wrap,attr_Design_J_5,design,9
|
||||
Cut out,attr_Design_J_6,design,9
|
||||
Tied,attr_Design_J_7,design,9
|
||||
Drapes,attr_Design_J_8,design,9
|
||||
Ribbon,attr_Design_J_9,design,9
|
||||
Button,attr_Design_J_10,design,9
|
||||
Cami,attr_Design_J_11,design,9
|
||||
Gathering,attr_Design_J_12,design,9
|
||||
Pocket,attr_Design_J_13,design,9
|
||||
Dungaree,attr_Design_J_14,design,9
|
||||
Layering,attr_Design_J_15,design,9
|
||||
Belted,attr_Design_J_16,design,9
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_J_1,OPType_J,11
|
||||
Zipper,attr_OPType_J_2,OPType_J,11
|
||||
Thread,attr_OPType_J_3,OPType_J,11
|
||||
Hook,attr_OPType_J_4,OPType_J,11
|
||||
Button,attr_OPType_J_1,opening_type,11
|
||||
Zipper,attr_OPType_J_2,opening_type,11
|
||||
Thread,attr_OPType_J_3,opening_type,11
|
||||
Hook,attr_OPType_J_4,opening_type,11
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peg leg,attr_Jumpsuit_subtype_1,Jumpsuit_subtype,12
|
||||
Straight leg,attr_Jumpsuit_subtype_2,Jumpsuit_subtype,12
|
||||
Wide leg,attr_Jumpsuit_subtype_3,Jumpsuit_subtype,12
|
||||
Boot-cut flare,attr_Jumpsuit_subtype_4,Jumpsuit_subtype,12
|
||||
Slim fit,attr_Jumpsuit_subtype_5,Jumpsuit_subtype,12
|
||||
Peg leg,attr_Jumpsuit_subtype_1,jumpsuit_subtype,12
|
||||
Straight leg,attr_Jumpsuit_subtype_2,jumpsuit_subtype,12
|
||||
Wide leg,attr_Jumpsuit_subtype_3,jumpsuit_subtype,12
|
||||
Boot-cut flare,attr_Jumpsuit_subtype_4,jumpsuit_subtype,12
|
||||
Slim fit,attr_Jumpsuit_subtype_5,jumpsuit_subtype,12
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Short,attr_Jumpsuit_length_1,Jumpsuit_length,1
|
||||
Middle,attr_Jumpsuit_length_2,Jumpsuit_length,1
|
||||
Seven,attr_Jumpsuit_length_3,Jumpsuit_length,1
|
||||
Nine,attr_Jumpsuit_length_4,Jumpsuit_length,1
|
||||
Long,attr_Jumpsuit_length_5,Jumpsuit_length,1
|
||||
Short,attr_Jumpsuit_length_1,jumpsuit_length,1
|
||||
Middle,attr_Jumpsuit_length_2,jumpsuit_length,1
|
||||
Seven,attr_Jumpsuit_length_3,jumpsuit_length,1
|
||||
Nine,attr_Jumpsuit_length_4,jumpsuit_length,1
|
||||
Long,attr_Jumpsuit_length_5,jumpsuit_length,1
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Sleeveless,attr_Sleeve_length_J_1,Sleeve_length_J,2
|
||||
Short,attr_Sleeve_length_J_2,Sleeve_length_J,2
|
||||
Middle,attr_Sleeve_length_J_3,Sleeve_length_J,2
|
||||
Seven,attr_Sleeve_length_J_4,Sleeve_length_J,2
|
||||
Long,attr_Sleeve_length_J_5,Sleeve_length_J,2
|
||||
Sleeveless,attr_Sleeve_length_J_1,sleeve_length,2
|
||||
Short,attr_Sleeve_length_J_2,sleeve_length,2
|
||||
Middle,attr_Sleeve_length_J_3,sleeve_length,2
|
||||
Seven,attr_Sleeve_length_J_4,sleeve_length,2
|
||||
Long,attr_Sleeve_length_J_5,sleeve_length,2
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shape_J_1,Sleeve_shape_J,3
|
||||
Slim,attr_Sleeve_shape_J_2,Sleeve_shape_J,3
|
||||
Puff,attr_Sleeve_shape_J_3,Sleeve_shape_J,3
|
||||
Bell,attr_Sleeve_shape_J_4,Sleeve_shape_J,3
|
||||
Batwing,attr_Sleeve_shape_J_5,Sleeve_shape_J,3
|
||||
Shirt,attr_Sleeve_shape_J_6,Sleeve_shape_J,3
|
||||
Rib,attr_Sleeve_shape_J_7,Sleeve_shape_J,3
|
||||
Raglan,attr_Sleeve_shape_J_8,Sleeve_shape_J,3
|
||||
Regular,attr_Sleeve_shape_J_1,sleeve_shape,3
|
||||
Slim,attr_Sleeve_shape_J_2,sleeve_shape,3
|
||||
Puff,attr_Sleeve_shape_J_3,sleeve_shape,3
|
||||
Bell,attr_Sleeve_shape_J_4,sleeve_shape,3
|
||||
Batwing,attr_Sleeve_shape_J_5,sleeve_shape,3
|
||||
Shirt,attr_Sleeve_shape_J_6,sleeve_shape,3
|
||||
Rib,attr_Sleeve_shape_J_7,sleeve_shape,3
|
||||
Raglan,attr_Sleeve_shape_J_8,sleeve_shape,3
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shoulder_J_1,Sleeve_shoulder_J,4
|
||||
Cold,attr_Sleeve_shoulder_J_2,Sleeve_shoulder_J,4
|
||||
Tucked,attr_Sleeve_shoulder_J_3,Sleeve_shoulder_J,4
|
||||
Balmain,attr_Sleeve_shoulder_J_4,Sleeve_shoulder_J,4
|
||||
Regular,attr_Sleeve_shoulder_J_1,sleeve_shoulder,4
|
||||
Cold,attr_Sleeve_shoulder_J_2,sleeve_shoulder,4
|
||||
Tucked,attr_Sleeve_shoulder_J_3,sleeve_shoulder,4
|
||||
Balmain,attr_Sleeve_shoulder_J_4,sleeve_shoulder,4
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Round,attr_Neckline_1,Neckline,6
|
||||
V,attr_Neckline_2,Neckline,6
|
||||
Square,attr_Neckline_3,Neckline,6
|
||||
One-shoulder,attr_Neckline_4,Neckline,6
|
||||
Off-shoulder,attr_Neckline_5,Neckline,6
|
||||
Strapless,attr_Neckline_6,Neckline,6
|
||||
Round,attr_Neckline_1,neckline,6
|
||||
V,attr_Neckline_2,neckline,6
|
||||
Square,attr_Neckline_3,neckline,6
|
||||
One-shoulder,attr_Neckline_4,neckline,6
|
||||
Off-shoulder,attr_Neckline_5,neckline,6
|
||||
Strapless,attr_Neckline_6,neckline,6
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peterpan,attr_Collar_J_1,Collar_J,6
|
||||
Shirt,attr_Collar_J_2,Collar_J,6
|
||||
Rib,attr_Collar_J_3,Collar_J,6
|
||||
Turtle,attr_Collar_J_4,Collar_J,6
|
||||
Lapel,attr_Collar_J_5,Collar_J,6
|
||||
Hoodie,attr_Collar_J_6,Collar_J,6
|
||||
Mandarin,attr_Collar_J_7,Collar_J,6
|
||||
Tie,attr_Collar_J_8,Collar_J,6
|
||||
Ruffle,attr_Collar_J_9,Collar_J,6
|
||||
Cowl,attr_Collar_J_10,Collar_J,6
|
||||
Peterpan,attr_Collar_J_1,collar,6
|
||||
Shirt,attr_Collar_J_2,collar,6
|
||||
Rib,attr_Collar_J_3,collar,6
|
||||
Turtle,attr_Collar_J_4,collar,6
|
||||
Lapel,attr_Collar_J_5,collar,6
|
||||
Hoodie,attr_Collar_J_6,collar,6
|
||||
Mandarin,attr_Collar_J_7,collar,6
|
||||
Tie,attr_Collar_J_8,collar,6
|
||||
Ruffle,attr_Collar_J_9,collar,6
|
||||
Cowl,attr_Collar_J_10,collar,6
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Abstract,attr_Print_J_1,Print_J,7
|
||||
Allover,attr_Print_J_2,Print_J,7
|
||||
Animal,attr_Print_J_3,Print_J,7
|
||||
Camouflage,attr_Print_J_4,Print_J,7
|
||||
Checks,attr_Print_J_5,Print_J,7
|
||||
Color_block,attr_Print_J_6,Print_J,7
|
||||
Disty print,attr_Print_J_7,Print_J,7
|
||||
Dotted,attr_Print_J_8,Print_J,7
|
||||
Floral,attr_Print_J_9,Print_J,7
|
||||
Graphic print,attr_Print_J_10,Print_J,7
|
||||
Logo and slogan,attr_Print_J_11,Print_J,7
|
||||
Patchwork,attr_Print_J_12,Print_J,7
|
||||
Plain,attr_Print_J_13,Print_J,7
|
||||
Plain_dnim,attr_Print_J_14,Print_J,7
|
||||
Stripe,attr_Print_J_15,Print_J,7
|
||||
Abstract,attr_Print_J_1,print,7
|
||||
Allover,attr_Print_J_2,print,7
|
||||
Animal,attr_Print_J_3,print,7
|
||||
Camouflage,attr_Print_J_4,print,7
|
||||
Checks,attr_Print_J_5,print,7
|
||||
Color_block,attr_Print_J_6,print,7
|
||||
Disty print,attr_Print_J_7,print,7
|
||||
Dotted,attr_Print_J_8,print,7
|
||||
Floral,attr_Print_J_9,print,7
|
||||
Graphic print,attr_Print_J_10,print,7
|
||||
Logo and slogan,attr_Print_J_11,print,7
|
||||
Patchwork,attr_Print_J_12,print,7
|
||||
Plain,attr_Print_J_13,print,7
|
||||
Plain_dnim,attr_Print_J_14,print,7
|
||||
Stripe,attr_Print_J_15,print,7
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Canvas,attr_Material_J_1,Material_J,8
|
||||
Chambray,attr_Material_J_2,Material_J,8
|
||||
Chenille,attr_Material_J_3,Material_J,8
|
||||
Chiffon,attr_Material_J_4,Material_J,8
|
||||
Corduroy,attr_Material_J_5,Material_J,8
|
||||
Crepe,attr_Material_J_6,Material_J,8
|
||||
Denim,attr_Material_J_7,Material_J,8
|
||||
Faux_fur,attr_Material_J_8,Material_J,8
|
||||
Faux_leather,attr_Material_J_9,Material_J,8
|
||||
Flannel,attr_Material_J_10,Material_J,8
|
||||
Fleece,attr_Material_J_11,Material_J,8
|
||||
Gingham,attr_Material_J_12,Material_J,8
|
||||
Jersey,attr_Material_J_13,Material_J,8
|
||||
Knit,attr_Material_J_14,Material_J,8
|
||||
Lace,attr_Material_J_15,Material_J,8
|
||||
Lawn,attr_Material_J_16,Material_J,8
|
||||
Neoprene,attr_Material_J_17,Material_J,8
|
||||
Organza,attr_Material_J_18,Material_J,8
|
||||
Plush,attr_Material_J_19,Material_J,8
|
||||
Satin,attr_Material_J_20,Material_J,8
|
||||
Serge,attr_Material_J_21,Material_J,8
|
||||
Taffeta,attr_Material_J_22,Material_J,8
|
||||
Tulle,attr_Material_J_23,Material_J,8
|
||||
Tweed,attr_Material_J_24,Material_J,8
|
||||
Twill,attr_Material_J_25,Material_J,8
|
||||
Velvet,attr_Material_J_26,Material_J,8
|
||||
Vinyl,attr_Material_J_27,Material_J,8
|
||||
Canvas,attr_Material_J_1,material,8
|
||||
Chambray,attr_Material_J_2,material,8
|
||||
Chenille,attr_Material_J_3,material,8
|
||||
Chiffon,attr_Material_J_4,material,8
|
||||
Corduroy,attr_Material_J_5,material,8
|
||||
Crepe,attr_Material_J_6,material,8
|
||||
Denim,attr_Material_J_7,material,8
|
||||
Faux_fur,attr_Material_J_8,material,8
|
||||
Faux_leather,attr_Material_J_9,material,8
|
||||
Flannel,attr_Material_J_10,material,8
|
||||
Fleece,attr_Material_J_11,material,8
|
||||
Gingham,attr_Material_J_12,material,8
|
||||
Jersey,attr_Material_J_13,material,8
|
||||
Knit,attr_Material_J_14,material,8
|
||||
Lace,attr_Material_J_15,material,8
|
||||
Lawn,attr_Material_J_16,material,8
|
||||
Neoprene,attr_Material_J_17,material,8
|
||||
Organza,attr_Material_J_18,material,8
|
||||
Plush,attr_Material_J_19,material,8
|
||||
Satin,attr_Material_J_20,material,8
|
||||
Serge,attr_Material_J_21,material,8
|
||||
Taffeta,attr_Material_J_22,material,8
|
||||
Tulle,attr_Material_J_23,material,8
|
||||
Tweed,attr_Material_J_24,material,8
|
||||
Twill,attr_Material_J_25,material,8
|
||||
Velvet,attr_Material_J_26,material,8
|
||||
Vinyl,attr_Material_J_27,material,8
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_J_1,Softness_J,9
|
||||
Medium,attr_Softness_J_2,Softness_J,9
|
||||
Hard,attr_Softness_J_3,Softness_J,9
|
||||
Soft,attr_Softness_J_1,softness,9
|
||||
Medium,attr_Softness_J_2,softness,9
|
||||
Hard,attr_Softness_J_3,softness,9
|
||||
|
||||
|
@@ -1,19 +1,19 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_O_1,Design_O,10
|
||||
Tiered,attr_Design_O_2,Design_O,10
|
||||
Tassel,attr_Design_O_3,Design_O,10
|
||||
Ruffles,attr_Design_O_4,Design_O,10
|
||||
Pleated,attr_Design_O_5,Design_O,10
|
||||
Wrap,attr_Design_O_6,Design_O,10
|
||||
Ripped,attr_Design_O_7,Design_O,10
|
||||
Cut out,attr_Design_O_8,Design_O,10
|
||||
Eyelet,attr_Design_O_9,Design_O,10
|
||||
Folded,attr_Design_O_10,Design_O,10
|
||||
Tied,attr_Design_O_11,Design_O,10
|
||||
Drapes,attr_Design_O_12,Design_O,10
|
||||
Ribbon,attr_Design_O_13,Design_O,10
|
||||
Button,attr_Design_O_14,Design_O,10
|
||||
Crossed-over zipper,attr_Design_O_15,Design_O,10
|
||||
Crossed-over button,attr_Design_O_16,Design_O,10
|
||||
Single breasted,attr_Design_O_17,Design_O,10
|
||||
Double breasted,attr_Design_O_18,Design_O,10
|
||||
Asymmetrical,attr_Design_O_1,design,10
|
||||
Tiered,attr_Design_O_2,design,10
|
||||
Tassel,attr_Design_O_3,design,10
|
||||
Ruffles,attr_Design_O_4,design,10
|
||||
Pleated,attr_Design_O_5,design,10
|
||||
Wrap,attr_Design_O_6,design,10
|
||||
Ripped,attr_Design_O_7,design,10
|
||||
Cut out,attr_Design_O_8,design,10
|
||||
Eyelet,attr_Design_O_9,design,10
|
||||
Folded,attr_Design_O_10,design,10
|
||||
Tied,attr_Design_O_11,design,10
|
||||
Drapes,attr_Design_O_12,design,10
|
||||
Ribbon,attr_Design_O_13,design,10
|
||||
Button,attr_Design_O_14,design,10
|
||||
Crossed-over zipper,attr_Design_O_15,design,10
|
||||
Crossed-over button,attr_Design_O_16,design,10
|
||||
Single breasted,attr_Design_O_17,design,10
|
||||
Double breasted,attr_Design_O_18,design,10
|
||||
|
||||
|
@@ -1,3 +1,3 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Full,attr_Opening_O_1,Opening_O,11
|
||||
Half,attr_Opening_O_2,Opening_O,11
|
||||
Full,attr_Opening_O_1,opening,11
|
||||
Half,attr_Opening_O_2,opening,11
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_O_1,OPType_O,12
|
||||
Zipper,attr_OPType_O_2,OPType_O,12
|
||||
Thread,attr_OPType_O_3,OPType_O,12
|
||||
Hook,attr_OPType_O_4,OPType_O,12
|
||||
Button,attr_OPType_O_1,opening_type,12
|
||||
Zipper,attr_OPType_O_2,opening_type,12
|
||||
Thread,attr_OPType_O_3,opening_type,12
|
||||
Hook,attr_OPType_O_4,opening_type,12
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line,attr_Silhouette_O_1,Silhouette_O,13
|
||||
H Shape,attr_Silhouette_O_2,Silhouette_O,13
|
||||
Slim,attr_Silhouette_O_3,Silhouette_O,13
|
||||
Flyman,attr_Silhouette_O_4,Silhouette_O,13
|
||||
Peplum,attr_Silhouette_O_5,Silhouette_O,13
|
||||
Oversize,attr_Silhouette_O_6,Silhouette_O,13
|
||||
A Line,attr_Silhouette_O_1,silhouette,13
|
||||
H Shape,attr_Silhouette_O_2,silhouette,13
|
||||
Slim,attr_Silhouette_O_3,silhouette,13
|
||||
Flyman,attr_Silhouette_O_4,silhouette,13
|
||||
Peplum,attr_Silhouette_O_5,silhouette,13
|
||||
Oversize,attr_Silhouette_O_6,silhouette,13
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Short,attr_Outer_length_1,Outer_length,1
|
||||
Regular,attr_Outer_length_2,Outer_length,1
|
||||
Long,attr_Outer_length_3,Outer_length,1
|
||||
Short,attr_Outer_length_1,length,1
|
||||
Regular,attr_Outer_length_2,length,1
|
||||
Long,attr_Outer_length_3,length,1
|
||||
|
@@ -1,18 +1,18 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Coat,attr_Outer_type_1,Outer_Type,2
|
||||
Trench,attr_Outer_type_2,Outer_Type,2
|
||||
Baseball jacket,attr_Outer_type_3,Outer_Type,2
|
||||
Hoodie jacket,attr_Outer_type_4,Outer_Type,2
|
||||
Active jacket,attr_Outer_type_5,Outer_Type,2
|
||||
Jacket,attr_Outer_type_6,Outer_Type,2
|
||||
Blazer,attr_Outer_type_7,Outer_Type,2
|
||||
Cardigan,attr_Outer_type_8,Outer_Type,2
|
||||
Capes,attr_Outer_type_9,Outer_Type,2
|
||||
Fleeces Jacket,attr_Outer_type_10,Outer_Type,2
|
||||
Gilets/Puffer,attr_Outer_type_11,Outer_Type,2
|
||||
Aviator jacket,attr_Outer_type_12,Outer_Type,2
|
||||
Biker jacket,attr_Outer_type_13,Outer_Type,2
|
||||
Pea coat,attr_Outer_type_14,Outer_Type,2
|
||||
Shacket,attr_Outer_type_15,Outer_Type,2
|
||||
Denim jacket,attr_Outer_type_16,Outer_Type,2
|
||||
Raincoat,attr_Outer_type_17,Outer_Type,2
|
||||
Coat,attr_Outer_type_1,Type,2
|
||||
Trench,attr_Outer_type_2,Type,2
|
||||
Baseball jacket,attr_Outer_type_3,Type,2
|
||||
Hoodie jacket,attr_Outer_type_4,Type,2
|
||||
Active jacket,attr_Outer_type_5,Type,2
|
||||
Jacket,attr_Outer_type_6,Type,2
|
||||
Blazer,attr_Outer_type_7,Type,2
|
||||
Cardigan,attr_Outer_type_8,Type,2
|
||||
Capes,attr_Outer_type_9,Type,2
|
||||
Fleeces Jacket,attr_Outer_type_10,Type,2
|
||||
Gilets/Puffer,attr_Outer_type_11,Type,2
|
||||
Aviator jacket,attr_Outer_type_12,Type,2
|
||||
Biker jacket,attr_Outer_type_13,Type,2
|
||||
Pea coat,attr_Outer_type_14,Type,2
|
||||
Shacket,attr_Outer_type_15,Type,2
|
||||
Denim jacket,attr_Outer_type_16,Type,2
|
||||
Raincoat,attr_Outer_type_17,Type,2
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Sleeveless,attr_Sleeve_length_O_1,Sleeve_length_O,3
|
||||
Short,attr_Sleeve_length_O_2,Sleeve_length_O,3
|
||||
Middle,attr_Sleeve_length_O_3,Sleeve_length_O,3
|
||||
Seven,attr_Sleeve_length_O_4,Sleeve_length_O,3
|
||||
Long,attr_Sleeve_length_O_5,Sleeve_length_O,3
|
||||
Sleeveless,attr_sleeve_length_1,sleeve_length,3
|
||||
Short,attr_sleeve_length_2,sleeve_length,3
|
||||
Middle,attr_sleeve_length_3,sleeve_length,3
|
||||
Seven,attr_sleeve_length_4,sleeve_length,3
|
||||
Long,attr_sleeve_length_5,sleeve_length,3
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shape_O_1,Sleeve_shape,4
|
||||
Slim,attr_Sleeve_shape_O_2,Sleeve_shape,4
|
||||
Puff,attr_Sleeve_shape_O_3,Sleeve_shape,4
|
||||
Bell,attr_Sleeve_shape_O_4,Sleeve_shape,4
|
||||
Batwing,attr_Sleeve_shape_O_5,Sleeve_shape,4
|
||||
Shirt,attr_Sleeve_shape_O_6,Sleeve_shape,4
|
||||
Rib,attr_Sleeve_shape_O_7,Sleeve_shape,4
|
||||
Raglan,attr_Sleeve_shape_O_8,Sleeve_shape,4
|
||||
Regular,attr_sleeve_shape_O_1,sleeve_shape,4
|
||||
Slim,attr_sleeve_shape_O_2,sleeve_shape,4
|
||||
Puff,attr_sleeve_shape_O_3,sleeve_shape,4
|
||||
Bell,attr_sleeve_shape_O_4,sleeve_shape,4
|
||||
Batwing,attr_sleeve_shape_O_5,sleeve_shape,4
|
||||
Shirt,attr_sleeve_shape_O_6,sleeve_shape,4
|
||||
Rib,attr_sleeve_shape_O_7,sleeve_shape,4
|
||||
Raglan,attr_sleeve_shape_O_8,sleeve_shape,4
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shoulder_O_1,Sleeve_shoulder,5
|
||||
Cold,attr_Sleeve_shoulder_O_2,Sleeve_shoulder,5
|
||||
Tucked,attr_Sleeve_shoulder_O_3,Sleeve_shoulder,5
|
||||
Balmain,attr_Sleeve_shoulder_O_4,Sleeve_shoulder,5
|
||||
Drop Shoulder,attr_Sleeve_shoulder_O_5,Sleeve_shoulder,5
|
||||
Regular,attr_sleeve_shoulder_O_1,sleeve_shoulder,5
|
||||
Cold,attr_sleeve_shoulder_O_2,sleeve_shoulder,5
|
||||
Tucked,attr_sleeve_shoulder_O_3,sleeve_shoulder,5
|
||||
Balmain,attr_sleeve_shoulder_O_4,sleeve_shoulder,5
|
||||
Drop Shoulder,attr_sleeve_shoulder_O_5,sleeve_shoulder,5
|
||||
|
||||
|
@@ -1,10 +1,10 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peterpan,attr_Callar_O_1,Collar,6
|
||||
Shirt,attr_Callar_O_2,Collar,6
|
||||
Rib,attr_Callar_O_3,Collar,6
|
||||
Turtle,attr_Callar_O_4,Collar,6
|
||||
Lapel,attr_Callar_O_5,Collar,6
|
||||
Hoodie,attr_Callar_O_6,Collar,6
|
||||
Mandarin,attr_Callar_O_7,Collar,6
|
||||
Ruffle,attr_Callar_O_8,Collar,6
|
||||
Jewel,attr_Callar_O_9,Collar,6
|
||||
Peterpan,attr_Callar_O_1,collar,6
|
||||
Shirt,attr_Callar_O_2,collar,6
|
||||
Rib,attr_Callar_O_3,collar,6
|
||||
Turtle,attr_Callar_O_4,collar,6
|
||||
Lapel,attr_Callar_O_5,collar,6
|
||||
Hoodie,attr_Callar_O_6,collar,6
|
||||
Mandarin,attr_Callar_O_7,collar,6
|
||||
Ruffle,attr_Callar_O_8,collar,6
|
||||
Jewel,attr_Callar_O_9,collar,6
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Abstract,attr_Print_O_1,Print_O,7
|
||||
Allover,attr_Print_O_2,Print_O,7
|
||||
Animal,attr_Print_O_3,Print_O,7
|
||||
Camouflage,attr_Print_O_4,Print_O,7
|
||||
Checks,attr_Print_O_5,Print_O,7
|
||||
Color_block,attr_Print_O_6,Print_O,7
|
||||
Disty print,attr_Print_O_7,Print_O,7
|
||||
Dotted,attr_Print_O_8,Print_O,7
|
||||
Floral,attr_Print_O_9,Print_O,7
|
||||
Graphic print,attr_Print_O_10,Print_O,7
|
||||
Logo and slogan,attr_Print_O_11,Print_O,7
|
||||
Patchwork,attr_Print_O_12,Print_O,7
|
||||
Plain,attr_Print_O_13,Print_O,7
|
||||
Plain_dnim,attr_Print_O_14,Print_O,7
|
||||
Stripe,attr_Print_O_15,Print_O,7
|
||||
Abstract,attr_Print_O_1,print,7
|
||||
Allover,attr_Print_O_2,print,7
|
||||
Animal,attr_Print_O_3,print,7
|
||||
Camouflage,attr_Print_O_4,print,7
|
||||
Checks,attr_Print_O_5,print,7
|
||||
Color_block,attr_Print_O_6,print,7
|
||||
Disty print,attr_Print_O_7,print,7
|
||||
Dotted,attr_Print_O_8,print,7
|
||||
Floral,attr_Print_O_9,print,7
|
||||
Graphic print,attr_Print_O_10,print,7
|
||||
Logo and slogan,attr_Print_O_11,print,7
|
||||
Patchwork,attr_Print_O_12,print,7
|
||||
Plain,attr_Print_O_13,print,7
|
||||
Plain_dnim,attr_Print_O_14,print,7
|
||||
Stripe,attr_Print_O_15,print,7
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Canvas,attr_Material_O_1,Material_O,8
|
||||
Chambray,attr_Material_O_2,Material_O,8
|
||||
Chenille,attr_Material_O_3,Material_O,8
|
||||
Chiffon,attr_Material_O_4,Material_O,8
|
||||
Corduroy,attr_Material_O_5,Material_O,8
|
||||
Crepe,attr_Material_O_6,Material_O,8
|
||||
Denim,attr_Material_O_7,Material_O,8
|
||||
Faux_fur,attr_Material_O_8,Material_O,8
|
||||
Faux_leather,attr_Material_O_9,Material_O,8
|
||||
Flannel,attr_Material_O_10,Material_O,8
|
||||
Fleece,attr_Material_O_11,Material_O,8
|
||||
Gingham,attr_Material_O_12,Material_O,8
|
||||
Jersey,attr_Material_O_13,Material_O,8
|
||||
Knit,attr_Material_O_14,Material_O,8
|
||||
Lace,attr_Material_O_15,Material_O,8
|
||||
Lawn,attr_Material_O_16,Material_O,8
|
||||
Neoprene,attr_Material_O_17,Material_O,8
|
||||
Organza,attr_Material_O_18,Material_O,8
|
||||
Plush,attr_Material_O_19,Material_O,8
|
||||
Satin,attr_Material_O_20,Material_O,8
|
||||
Serge,attr_Material_O_21,Material_O,8
|
||||
Taffeta,attr_Material_O_22,Material_O,8
|
||||
Tulle,attr_Material_O_23,Material_O,8
|
||||
Tweed,attr_Material_O_24,Material_O,8
|
||||
Twill,attr_Material_O_25,Material_O,8
|
||||
Velvet,attr_Material_O_26,Material_O,8
|
||||
Vinyl,attr_Material_O_27,Material_O,8
|
||||
Canvas,attr_Material_O_1,material,8
|
||||
Chambray,attr_Material_O_2,material,8
|
||||
Chenille,attr_Material_O_3,material,8
|
||||
Chiffon,attr_Material_O_4,material,8
|
||||
Corduroy,attr_Material_O_5,material,8
|
||||
Crepe,attr_Material_O_6,material,8
|
||||
Denim,attr_Material_O_7,material,8
|
||||
Faux_fur,attr_Material_O_8,material,8
|
||||
Faux_leather,attr_Material_O_9,material,8
|
||||
Flannel,attr_Material_O_10,material,8
|
||||
Fleece,attr_Material_O_11,material,8
|
||||
Gingham,attr_Material_O_12,material,8
|
||||
Jersey,attr_Material_O_13,material,8
|
||||
Knit,attr_Material_O_14,material,8
|
||||
Lace,attr_Material_O_15,material,8
|
||||
Lawn,attr_Material_O_16,material,8
|
||||
Neoprene,attr_Material_O_17,material,8
|
||||
Organza,attr_Material_O_18,material,8
|
||||
Plush,attr_Material_O_19,material,8
|
||||
Satin,attr_Material_O_20,material,8
|
||||
Serge,attr_Material_O_21,material,8
|
||||
Taffeta,attr_Material_O_22,material,8
|
||||
Tulle,attr_Material_O_23,material,8
|
||||
Tweed,attr_Material_O_24,material,8
|
||||
Twill,attr_Material_O_25,material,8
|
||||
Velvet,attr_Material_O_26,material,8
|
||||
Vinyl,attr_Material_O_27,material,8
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_O_1,Softness_O,9
|
||||
Medium,attr_Softness_O_2,Softness_O,9
|
||||
Hard,attr_Softness_O_3,Softness_O,9
|
||||
Soft,attr_Softness_O_1,softness,9
|
||||
Medium,attr_Softness_O_2,softness,9
|
||||
Hard,attr_Softness_O_3,softness,9
|
||||
|
||||
|
@@ -1,15 +1,15 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_U_1,Design_U,10
|
||||
Tiered,attr_Design_U_2,Design_U,10
|
||||
Tassel,attr_Design_U_3,Design_U,10
|
||||
Ruffle,attr_Design_U_4,Design_U,10
|
||||
Pleated,attr_Design_U_5,Design_U,10
|
||||
Wrap,attr_Design_U_6,Design_U,10
|
||||
Ripped,attr_Design_U_7,Design_U,10
|
||||
Cut out,attr_Design_U_8,Design_U,10
|
||||
Eyelet,attr_Design_U_9,Design_U,10
|
||||
Folded,attr_Design_U_10,Design_U,10
|
||||
Tied,attr_Design_U_11,Design_U,10
|
||||
Drapes,attr_Design_U_12,Design_U,10
|
||||
Ribbon,attr_Design_U_13,Design_U,10
|
||||
Button,attr_Design_U_14,Design_U,10
|
||||
Asymmetrical,attr_Design_U_1,design,10
|
||||
Tiered,attr_Design_U_2,design,10
|
||||
Tassel,attr_Design_U_3,design,10
|
||||
Ruffle,attr_Design_U_4,design,10
|
||||
Pleated,attr_Design_U_5,design,10
|
||||
Wrap,attr_Design_U_6,design,10
|
||||
Ripped,attr_Design_U_7,design,10
|
||||
Cut out,attr_Design_U_8,design,10
|
||||
Eyelet,attr_Design_U_9,design,10
|
||||
Folded,attr_Design_U_10,design,10
|
||||
Tied,attr_Design_U_11,design,10
|
||||
Drapes,attr_Design_U_12,design,10
|
||||
Ribbon,attr_Design_U_13,design,10
|
||||
Button,attr_Design_U_14,design,10
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_U_1,OPType_U,11
|
||||
Zipper,attr_OPType_U_2,OPType_U,11
|
||||
Thread,attr_OPType_U_3,OPType_U,11
|
||||
Hook,attr_OPType_U_4,OPType_U,11
|
||||
Button,attr_OPType_U_1,opening_type,11
|
||||
Zipper,attr_OPType_U_2,opening_type,11
|
||||
Thread,attr_OPType_U_3,opening_type,11
|
||||
Hook,attr_OPType_U_4,opening_type,11
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line,attr_Silhouette_U_1,Silhouette_U,12
|
||||
H Shape,attr_Silhouette_U_2,Silhouette_U,12
|
||||
Slim,attr_Silhouette_U_3,Silhouette_U,12
|
||||
Flyman,attr_Silhouette_U_4,Silhouette_U,12
|
||||
Peplum,attr_Silhouette_U_5,Silhouette_U,12
|
||||
Oversize,attr_Silhouette_U_6,Silhouette_U,12
|
||||
A Line,attr_Silhouette_U_1,silhouette,12
|
||||
H Shape,attr_Silhouette_U_2,silhouette,12
|
||||
Slim,attr_Silhouette_U_3,silhouette,12
|
||||
Flyman,attr_Silhouette_U_4,silhouette,12
|
||||
Peplum,attr_Silhouette_U_5,silhouette,12
|
||||
Oversize,attr_Silhouette_U_6,silhouette,12
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Short,attr_Top_length_1,Top_length,1
|
||||
Regular,attr_Top_length_2,Top_length,1
|
||||
Long,attr_Top_length_3,Top_length,1
|
||||
Short,attr_Top_length_1,length,1
|
||||
Regular,attr_Top_length_2,length,1
|
||||
Long,attr_Top_length_3,length,1
|
||||
|
||||
|
@@ -1,15 +1,15 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Bandeau,attr_toptype_1,Top_Type,2
|
||||
Blouse,attr_toptype_2,Top_Type,2
|
||||
Bodysuit,attr_toptype_3,Top_Type,2
|
||||
Bralets,attr_toptype_4,Top_Type,2
|
||||
Camisole,attr_toptype_5,Top_Type,2
|
||||
Crop Top,attr_toptype_6,Top_Type,2
|
||||
Hoodie,attr_toptype_7,Top_Type,2
|
||||
Pullover,attr_toptype_8,Top_Type,2
|
||||
Polo shirt,attr_toptype_9,Top_Type,2
|
||||
Shirt,attr_toptype_10,Top_Type,2
|
||||
strapeless,attr_toptype_11,Top_Type,2
|
||||
Sweater,attr_toptype_12,Top_Type,2
|
||||
Tank Top,attr_toptype_13,Top_Type,2
|
||||
T-shirt,attr_toptype_14,Top_Type,2
|
||||
Bandeau,attr_toptype_1,type,2
|
||||
Blouse,attr_toptype_2,type,2
|
||||
Bodysuit,attr_toptype_3,type,2
|
||||
Bralets,attr_toptype_4,type,2
|
||||
Camisole,attr_toptype_5,type,2
|
||||
Crop Top,attr_toptype_6,type,2
|
||||
Hoodie,attr_toptype_7,type,2
|
||||
Pullover,attr_toptype_8,type,2
|
||||
Polo shirt,attr_toptype_9,type,2
|
||||
Shirt,attr_toptype_10,type,2
|
||||
strapeless,attr_toptype_11,type,2
|
||||
Sweater,attr_toptype_12,type,2
|
||||
Tank Top,attr_toptype_13,type,2
|
||||
T-shirt,attr_toptype_14,type,2
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Sleeveless,attr_Sleeve_length_1,Sleeve_length,3
|
||||
Short,attr_Sleeve_length_2,Sleeve_length,3
|
||||
Middle,attr_Sleeve_length_3,Sleeve_length,3
|
||||
Seven,attr_Sleeve_length_4,Sleeve_length,3
|
||||
Long,attr_Sleeve_length_5,Sleeve_length,3
|
||||
Sleeveless,attr_Sleeve_length_1,sleeve_length,3
|
||||
Short,attr_Sleeve_length_2,sleeve_length,3
|
||||
Middle,attr_Sleeve_length_3,sleeve_length,3
|
||||
Seven,attr_Sleeve_length_4,sleeve_length,3
|
||||
Long,attr_Sleeve_length_5,sleeve_length,3
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shape_1,Sleeve_shape,4
|
||||
Slim,attr_Sleeve_shape_2,Sleeve_shape,4
|
||||
Puff,attr_Sleeve_shape_3,Sleeve_shape,4
|
||||
Bell,attr_Sleeve_shape_4,Sleeve_shape,4
|
||||
Batwing,attr_Sleeve_shape_5,Sleeve_shape,4
|
||||
Shirt,attr_Sleeve_shape_6,Sleeve_shape,4
|
||||
Rib,attr_Sleeve_shape_7,Sleeve_shape,4
|
||||
Raglan,attr_Sleeve_shape_8,Sleeve_shape,4
|
||||
Regular,attr_Sleeve_shape_1,sleeve_shape,4
|
||||
Slim,attr_Sleeve_shape_2,sleeve_shape,4
|
||||
Puff,attr_Sleeve_shape_3,sleeve_shape,4
|
||||
Bell,attr_Sleeve_shape_4,sleeve_shape,4
|
||||
Batwing,attr_Sleeve_shape_5,sleeve_shape,4
|
||||
Shirt,attr_Sleeve_shape_6,sleeve_shape,4
|
||||
Rib,attr_Sleeve_shape_7,sleeve_shape,4
|
||||
Raglan,attr_Sleeve_shape_8,sleeve_shape,4
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shoulder_1,Sleeve_shoulder,5
|
||||
Cold,attr_Sleeve_shoulder_2,Sleeve_shoulder,5
|
||||
Tucked,attr_Sleeve_shoulder_3,Sleeve_shoulder,5
|
||||
Balmain,attr_Sleeve_shoulder_4,Sleeve_shoulder,5
|
||||
Regular,attr_Sleeve_shoulder_1,sleeve_shoulder,5
|
||||
Cold,attr_Sleeve_shoulder_2,sleeve_shoulder,5
|
||||
Tucked,attr_Sleeve_shoulder_3,sleeve_shoulder,5
|
||||
Balmain,attr_Sleeve_shoulder_4,sleeve_shoulder,5
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Round,attr_Neckline_1,Neckline,6
|
||||
V,attr_Neckline_2,Neckline,6
|
||||
Square,attr_Neckline_3,Neckline,6
|
||||
One-shoulder,attr_Neckline_4,Neckline,6
|
||||
Off-shoulder,attr_Neckline_5,Neckline,6
|
||||
Strapless,attr_Neckline_6,Neckline,6
|
||||
Round,attr_Neckline_1,neckline,6
|
||||
V,attr_Neckline_2,neckline,6
|
||||
Square,attr_Neckline_3,neckline,6
|
||||
One-shoulder,attr_Neckline_4,neckline,6
|
||||
Off-shoulder,attr_Neckline_5,neckline,6
|
||||
Strapless,attr_Neckline_6,neckline,6
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Abstract,attr_Print_O_1,Print_U,7
|
||||
Allover,attr_Print_O_2,Print_U,7
|
||||
Animal,attr_Print_O_3,Print_U,7
|
||||
Camouflage,attr_Print_O_4,Print_U,7
|
||||
Checks,attr_Print_O_5,Print_U,7
|
||||
Color_block,attr_Print_O_6,Print_U,7
|
||||
Disty print,attr_Print_O_7,Print_U,7
|
||||
Dotted,attr_Print_O_8,Print_U,7
|
||||
Floral,attr_Print_O_9,Print_U,7
|
||||
Graphic print,attr_Print_O_10,Print_U,7
|
||||
Logo and slogan,attr_Print_O_11,Print_U,7
|
||||
Patchwork,attr_Print_O_12,Print_U,7
|
||||
Plain,attr_Print_O_13,Print_U,7
|
||||
Plain_dnim,attr_Print_O_14,Print_U,7
|
||||
Stripe,attr_Print_O_15,Print_U,7
|
||||
Abstract,attr_Print_O_1,print,7
|
||||
Allover,attr_Print_O_2,print,7
|
||||
Animal,attr_Print_O_3,print,7
|
||||
Camouflage,attr_Print_O_4,print,7
|
||||
Checks,attr_Print_O_5,print,7
|
||||
Color_block,attr_Print_O_6,print,7
|
||||
Disty print,attr_Print_O_7,print,7
|
||||
Dotted,attr_Print_O_8,print,7
|
||||
Floral,attr_Print_O_9,print,7
|
||||
Graphic print,attr_Print_O_10,print,7
|
||||
Logo and slogan,attr_Print_O_11,print,7
|
||||
Patchwork,attr_Print_O_12,print,7
|
||||
Plain,attr_Print_O_13,print,7
|
||||
Plain_dnim,attr_Print_O_14,print,7
|
||||
Stripe,attr_Print_O_15,print,7
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peterpan,attr_Collar_1,Collar,7
|
||||
Shirt,attr_Collar_2,Collar,7
|
||||
Rib,attr_Collar_3,Collar,7
|
||||
Turtle,attr_Collar_4,Collar,7
|
||||
Lapel,attr_Collar_5,Collar,7
|
||||
Hoodie,attr_Collar_6,Collar,7
|
||||
Mandarin,attr_Collar_7,Collar,7
|
||||
Tie,attr_Collar_8,Collar,7
|
||||
Ruffle,attr_Collar_9,Collar,7
|
||||
Cowl,attr_Collar_10,Collar,7
|
||||
Peterpan,attr_Collar_1,collar,7
|
||||
Shirt,attr_Collar_2,collar,7
|
||||
Rib,attr_Collar_3,collar,7
|
||||
Turtle,attr_Collar_4,collar,7
|
||||
Lapel,attr_Collar_5,collar,7
|
||||
Hoodie,attr_Collar_6,collar,7
|
||||
Mandarin,attr_Collar_7,collar,7
|
||||
Tie,attr_Collar_8,collar,7
|
||||
Ruffle,attr_Collar_9,collar,7
|
||||
Cowl,attr_Collar_10,collar,7
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Canvas,attr_Material_O_1,Material_U,8
|
||||
Chambray,attr_Material_O_2,Material_U,8
|
||||
Chenille,attr_Material_O_3,Material_U,8
|
||||
Chiffon,attr_Material_O_4,Material_U,8
|
||||
Corduroy,attr_Material_O_5,Material_U,8
|
||||
Crepe,attr_Material_O_6,Material_U,8
|
||||
Denim,attr_Material_O_7,Material_U,8
|
||||
Faux_fur,attr_Material_O_8,Material_U,8
|
||||
Faux_leather,attr_Material_O_9,Material_U,8
|
||||
Flannel,attr_Material_O_10,Material_U,8
|
||||
Fleece,attr_Material_O_11,Material_U,8
|
||||
Gingham,attr_Material_O_12,Material_U,8
|
||||
Jersey,attr_Material_O_13,Material_U,8
|
||||
Knit,attr_Material_O_14,Material_U,8
|
||||
Lace,attr_Material_O_15,Material_U,8
|
||||
Lawn,attr_Material_O_16,Material_U,8
|
||||
Neoprene,attr_Material_O_17,Material_U,8
|
||||
Organza,attr_Material_O_18,Material_U,8
|
||||
Plush,attr_Material_O_19,Material_U,8
|
||||
Satin,attr_Material_O_20,Material_U,8
|
||||
Serge,attr_Material_O_21,Material_U,8
|
||||
Taffeta,attr_Material_O_22,Material_U,8
|
||||
Tulle,attr_Material_O_23,Material_U,8
|
||||
Tweed,attr_Material_O_24,Material_U,8
|
||||
Twill,attr_Material_O_25,Material_U,8
|
||||
Velvet,attr_Material_O_26,Material_U,8
|
||||
Vinyl,attr_Material_O_27,Material_U,8
|
||||
Canvas,attr_Material_O_1,material,8
|
||||
Chambray,attr_Material_O_2,material,8
|
||||
Chenille,attr_Material_O_3,material,8
|
||||
Chiffon,attr_Material_O_4,material,8
|
||||
Corduroy,attr_Material_O_5,material,8
|
||||
Crepe,attr_Material_O_6,material,8
|
||||
Denim,attr_Material_O_7,material,8
|
||||
Faux_fur,attr_Material_O_8,material,8
|
||||
Faux_leather,attr_Material_O_9,material,8
|
||||
Flannel,attr_Material_O_10,material,8
|
||||
Fleece,attr_Material_O_11,material,8
|
||||
Gingham,attr_Material_O_12,material,8
|
||||
Jersey,attr_Material_O_13,material,8
|
||||
Knit,attr_Material_O_14,material,8
|
||||
Lace,attr_Material_O_15,material,8
|
||||
Lawn,attr_Material_O_16,material,8
|
||||
Neoprene,attr_Material_O_17,material,8
|
||||
Organza,attr_Material_O_18,material,8
|
||||
Plush,attr_Material_O_19,material,8
|
||||
Satin,attr_Material_O_20,material,8
|
||||
Serge,attr_Material_O_21,material,8
|
||||
Taffeta,attr_Material_O_22,material,8
|
||||
Tulle,attr_Material_O_23,material,8
|
||||
Tweed,attr_Material_O_24,material,8
|
||||
Twill,attr_Material_O_25,material,8
|
||||
Velvet,attr_Material_O_26,material,8
|
||||
Vinyl,attr_Material_O_27,material,8
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_U_1,Softness_U,9
|
||||
Medium,attr_Softness_U_2,Softness_U,9
|
||||
Hard,attr_Softness_U_3,Softness_U,9
|
||||
Soft,attr_Softness_U_1,softness,9
|
||||
Medium,attr_Softness_U_2,softness,9
|
||||
Hard,attr_Softness_U_3,softness,9
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Soft,attr_Softness_U_1,Softness_U,10
|
||||
Medium,attr_Softness_U_2,Softness_U,10
|
||||
Hard,attr_Softness_U_3,Softness_U,10
|
||||
Soft,attr_Softness_U_1,softness,10
|
||||
Medium,attr_Softness_U_2,softness,10
|
||||
Hard,attr_Softness_U_3,softness,10
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Asymmetrical,attr_Design_U_1,Design_U,11
|
||||
Tiered,attr_Design_U_2,Design_U,11
|
||||
Tassel,attr_Design_U_3,Design_U,11
|
||||
Ruffle,attr_Design_U_4,Design_U,11
|
||||
Pleated,attr_Design_U_5,Design_U,11
|
||||
Wrap,attr_Design_U_6,Design_U,11
|
||||
Ripped,attr_Design_U_7,Design_U,11
|
||||
Cut out,attr_Design_U_8,Design_U,11
|
||||
Eyelet,attr_Design_U_9,Design_U,11
|
||||
Folded,attr_Design_U_10,Design_U,11
|
||||
Tied,attr_Design_U_11,Design_U,11
|
||||
Drapes,attr_Design_U_12,Design_U,11
|
||||
Ribbon,attr_Design_U_13,Design_U,11
|
||||
Button,attr_Design_U_14,Design_U,11
|
||||
Gathering,attr_Design_U_15,Design_U,11
|
||||
Asymmetrical,attr_Design_U_1,design,11
|
||||
Tiered,attr_Design_U_2,design,11
|
||||
Tassel,attr_Design_U_3,design,11
|
||||
Ruffle,attr_Design_U_4,design,11
|
||||
Pleated,attr_Design_U_5,design,11
|
||||
Wrap,attr_Design_U_6,design,11
|
||||
Ripped,attr_Design_U_7,design,11
|
||||
Cut out,attr_Design_U_8,design,11
|
||||
Eyelet,attr_Design_U_9,design,11
|
||||
Folded,attr_Design_U_10,design,11
|
||||
Tied,attr_Design_U_11,design,11
|
||||
Drapes,attr_Design_U_12,design,11
|
||||
Ribbon,attr_Design_U_13,design,11
|
||||
Button,attr_Design_U_14,design,11
|
||||
Gathering,attr_Design_U_15,design,11
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Button,attr_OPType_U_1,OPType_U,12
|
||||
Zipper,attr_OPType_U_2,OPType_U,12
|
||||
Thread,attr_OPType_U_3,OPType_U,12
|
||||
Hook,attr_OPType_U_4,OPType_U,12
|
||||
Button,attr_OPType_U_1,opening_type,12
|
||||
Zipper,attr_OPType_U_2,opening_type,12
|
||||
Thread,attr_OPType_U_3,opening_type,12
|
||||
Hook,attr_OPType_U_4,opening_type,12
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
A Line,attr_Silhouette_U_1,Silhouette_U,13
|
||||
H Shape,attr_Silhouette_U_2,Silhouette_U,13
|
||||
Slim,attr_Silhouette_U_3,Silhouette_U,13
|
||||
Flyman,attr_Silhouette_U_4,Silhouette_U,13
|
||||
Peplum,attr_Silhouette_U_5,Silhouette_U,13
|
||||
Oversize,attr_Silhouette_U_6,Silhouette_U,13
|
||||
A Line,attr_Silhouette_U_1,silhouette,13
|
||||
H Shape,attr_Silhouette_U_2,silhouette,13
|
||||
Slim,attr_Silhouette_U_3,silhouette,13
|
||||
Flyman,attr_Silhouette_U_4,silhouette,13
|
||||
Peplum,attr_Silhouette_U_5,silhouette,13
|
||||
Oversize,attr_Silhouette_U_6,silhouette,13
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Short,attr_Top_length_1,Top_length,1
|
||||
Regular,attr_Top_length_2,Top_length,1
|
||||
Long,attr_Top_length_3,Top_length,1
|
||||
Short,attr_Top_length_1,top_length,1
|
||||
Regular,attr_Top_length_2,top_length,1
|
||||
Long,attr_Top_length_3,top_length,1
|
||||
|
||||
|
@@ -1,15 +1,15 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Blouse,attr_Top_type_1,Top_type,2
|
||||
Camisole,attr_Top_type_2,Top_type,2
|
||||
Shirt,attr_Top_type_3,Top_type,2
|
||||
T-shirt,attr_Top_type_4,Top_type,2
|
||||
Jumper-Pullover,attr_Top_type_5,Top_type,2
|
||||
Hoodie,attr_Top_type_6,Top_type,2
|
||||
Tank Top,attr_Top_type_7,Top_type,2
|
||||
Polo shirt,attr_Top_type_8,Top_type,2
|
||||
Crop Top,attr_Top_type_9,Top_type,2
|
||||
Bralets,attr_Top_type_10,Top_type,2
|
||||
Bodysuit,attr_Top_type_11,Top_type,2
|
||||
Bandeau,attr_Top_type_12,Top_type,2
|
||||
Sweater,attr_Top_type_13,Top_type,2
|
||||
Strapless,attr_Top_type_14,Top_type,2
|
||||
Blouse,attr_Top_type_1,top_type,2
|
||||
Camisole,attr_Top_type_2,top_type,2
|
||||
Shirt,attr_Top_type_3,top_type,2
|
||||
T-shirt,attr_Top_type_4,top_type,2
|
||||
Jumper-Pullover,attr_Top_type_5,top_type,2
|
||||
Hoodie,attr_Top_type_6,top_type,2
|
||||
Tank Top,attr_Top_type_7,top_type,2
|
||||
Polo shirt,attr_Top_type_8,top_type,2
|
||||
Crop Top,attr_Top_type_9,top_type,2
|
||||
Bralets,attr_Top_type_10,top_type,2
|
||||
Bodysuit,attr_Top_type_11,top_type,2
|
||||
Bandeau,attr_Top_type_12,top_type,2
|
||||
Sweater,attr_Top_type_13,top_type,2
|
||||
Strapless,attr_Top_type_14,top_type,2
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Sleeveless,attr_Sleeve_length_U_1,Sleeve_length_U,3
|
||||
Short,attr_Sleeve_length_U_2,Sleeve_length_U,3
|
||||
Middle,attr_Sleeve_length_U_3,Sleeve_length_U,3
|
||||
Seven,attr_Sleeve_length_U_4,Sleeve_length_U,3
|
||||
Long,attr_Sleeve_length_U_5,Sleeve_length_U,3
|
||||
Sleeveless,attr_Sleeve_length_U_1,sleeve_length,3
|
||||
Short,attr_Sleeve_length_U_2,sleeve_length,3
|
||||
Middle,attr_Sleeve_length_U_3,sleeve_length,3
|
||||
Seven,attr_Sleeve_length_U_4,sleeve_length,3
|
||||
Long,attr_Sleeve_length_U_5,sleeve_length,3
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shape_U_1,Sleeve_shape_U,4
|
||||
Slim,attr_Sleeve_shape_U_2,Sleeve_shape_U,4
|
||||
Puff,attr_Sleeve_shape_U_3,Sleeve_shape_U,4
|
||||
Bell,attr_Sleeve_shape_U_4,Sleeve_shape_U,4
|
||||
Batwing,attr_Sleeve_shape_U_5,Sleeve_shape_U,4
|
||||
Shirt,attr_Sleeve_shape_U_6,Sleeve_shape_U,4
|
||||
Rib,attr_Sleeve_shape_U_7,Sleeve_shape_U,4
|
||||
Raglan,attr_Sleeve_shape_U_8,Sleeve_shape_U,4
|
||||
Regular,attr_Sleeve_shape_U_1,sleeve_shape,4
|
||||
Slim,attr_Sleeve_shape_U_2,sleeve_shape,4
|
||||
Puff,attr_Sleeve_shape_U_3,sleeve_shape,4
|
||||
Bell,attr_Sleeve_shape_U_4,sleeve_shape,4
|
||||
Batwing,attr_Sleeve_shape_U_5,sleeve_shape,4
|
||||
Shirt,attr_Sleeve_shape_U_6,sleeve_shape,4
|
||||
Rib,attr_Sleeve_shape_U_7,sleeve_shape,4
|
||||
Raglan,attr_Sleeve_shape_U_8,sleeve_shape,4
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Regular,attr_Sleeve_shoulder_U_1,Sleeve_shoulder_U,5
|
||||
Cold,attr_Sleeve_shoulder_U_2,Sleeve_shoulder_U,5
|
||||
Tucked,attr_Sleeve_shoulder_U_3,Sleeve_shoulder_U,5
|
||||
Balmain,attr_Sleeve_shoulder_U_4,Sleeve_shoulder_U,5
|
||||
Regular,attr_Sleeve_shoulder_U_1,sleeve_shoulder,5
|
||||
Cold,attr_Sleeve_shoulder_U_2,sleeve_shoulder,5
|
||||
Tucked,attr_Sleeve_shoulder_U_3,sleeve_shoulder,5
|
||||
Balmain,attr_Sleeve_shoulder_U_4,sleeve_shoulder,5
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Round,attr_Neckline_U_1,Neckline_U,6
|
||||
V,attr_Neckline_U_2,Neckline_U,6
|
||||
Square,attr_Neckline_U_3,Neckline_U,6
|
||||
One-shoulder,attr_Neckline_U_4,Neckline_U,6
|
||||
Off-shoulder,attr_Neckline_U_5,Neckline_U,6
|
||||
Strapless,attr_Neckline_U_6,Neckline_U,6
|
||||
boat,attr_Neckline_U_7,Neckline_U,6
|
||||
choker,attr_Neckline_U_8,Neckline_U,6
|
||||
cowl,attr_Neckline_U_9,Neckline_U,6
|
||||
halter,attr_Neckline_U_10,Neckline_U,6
|
||||
keyhole,attr_Neckline_U_11,Neckline_U,6
|
||||
spaghetti,attr_Neckline_U_12,Neckline_U,6
|
||||
split,attr_Neckline_U_13,Neckline_U,6
|
||||
sweetheart,attr_Neckline_U_14,Neckline_U,6
|
||||
U,attr_Neckline_U_15,Neckline_U,6
|
||||
Round,attr_Neckline_U_1,neckline,6
|
||||
V,attr_Neckline_U_2,neckline,6
|
||||
Square,attr_Neckline_U_3,neckline,6
|
||||
One-shoulder,attr_Neckline_U_4,neckline,6
|
||||
Off-shoulder,attr_Neckline_U_5,neckline,6
|
||||
Strapless,attr_Neckline_U_6,neckline,6
|
||||
boat,attr_Neckline_U_7,neckline,6
|
||||
choker,attr_Neckline_U_8,neckline,6
|
||||
cowl,attr_Neckline_U_9,neckline,6
|
||||
halter,attr_Neckline_U_10,neckline,6
|
||||
keyhole,attr_Neckline_U_11,neckline,6
|
||||
spaghetti,attr_Neckline_U_12,neckline,6
|
||||
split,attr_Neckline_U_13,neckline,6
|
||||
sweetheart,attr_Neckline_U_14,neckline,6
|
||||
U,attr_Neckline_U_15,neckline,6
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
Peterpan-Bertha,attr_Collar_U_1,Collar_U,7
|
||||
Shirt,attr_Collar_U_2,Collar_U,7
|
||||
Rib,attr_Collar_U_3,Collar_U,7
|
||||
Turtle,attr_Collar_U_4,Collar_U,7
|
||||
Lapel,attr_Collar_U_5,Collar_U,7
|
||||
Hoodie,attr_Collar_U_6,Collar_U,7
|
||||
Mandarin,attr_Collar_U_7,Collar_U,7
|
||||
Tie,attr_Collar_U_8,Collar_U,7
|
||||
Ruffle,attr_Collar_U_9,Collar_U,7
|
||||
Cowl,attr_Collar_U_10,Collar_U,7
|
||||
Peterpan-Bertha,attr_Collar_U_1,collar,7
|
||||
Shirt,attr_Collar_U_2,collar,7
|
||||
Rib,attr_Collar_U_3,collar,7
|
||||
Turtle,attr_Collar_U_4,collar,7
|
||||
Lapel,attr_Collar_U_5,collar,7
|
||||
Hoodie,attr_Collar_U_6,collar,7
|
||||
Mandarin,attr_Collar_U_7,collar,7
|
||||
Tie,attr_Collar_U_8,collar,7
|
||||
Ruffle,attr_Collar_U_9,collar,7
|
||||
Cowl,attr_Collar_U_10,collar,7
|
||||
|
||||
|
@@ -1,16 +1,16 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
abstract,attr_Print_U_1,Print_U,8
|
||||
allover,attr_Print_U_2,Print_U,8
|
||||
animal printed,attr_Print_U_3,Print_U,8
|
||||
Camouflage,attr_Print_U_4,Print_U,8
|
||||
checks,attr_Print_U_5,Print_U,8
|
||||
color_block,attr_Print_U_6,Print_U,8
|
||||
disty print,attr_Print_U_7,Print_U,8
|
||||
dotted,attr_Print_U_8,Print_U,8
|
||||
floral,attr_Print_U_9,Print_U,8
|
||||
graphic print,attr_Print_U_10,Print_U,8
|
||||
logo and slogan print,attr_Print_U_11,Print_U,8
|
||||
patchwork,attr_Print_U_12,Print_U,8
|
||||
plain,attr_Print_U_13,Print_U,8
|
||||
plain_dnim,attr_Print_U_14,Print_U,8
|
||||
stripe,attr_Print_U_15,Print_U,8
|
||||
abstract,attr_Print_U_1,print,8
|
||||
allover,attr_Print_U_2,print,8
|
||||
animal printed,attr_Print_U_3,print,8
|
||||
Camouflage,attr_Print_U_4,print,8
|
||||
checks,attr_Print_U_5,print,8
|
||||
color_block,attr_Print_U_6,print,8
|
||||
disty print,attr_Print_U_7,print,8
|
||||
dotted,attr_Print_U_8,print,8
|
||||
floral,attr_Print_U_9,print,8
|
||||
graphic print,attr_Print_U_10,print,8
|
||||
logo and slogan print,attr_Print_U_11,print,8
|
||||
patchwork,attr_Print_U_12,print,8
|
||||
plain,attr_Print_U_13,print,8
|
||||
plain_dnim,attr_Print_U_14,print,8
|
||||
stripe,attr_Print_U_15,print,8
|
||||
|
||||
|
@@ -1,28 +1,28 @@
|
||||
labelName,join_attr,taskName,taskId
|
||||
canvas,attr_Material_U_1,Material_U,9
|
||||
chambray,attr_Material_U_2,Material_U,9
|
||||
chenille,attr_Material_U_3,Material_U,9
|
||||
chiffon,attr_Material_U_4,Material_U,9
|
||||
corduroy,attr_Material_U_5,Material_U,9
|
||||
crepe,attr_Material_U_6,Material_U,9
|
||||
denim,attr_Material_U_7,Material_U,9
|
||||
faux_fur,attr_Material_U_8,Material_U,9
|
||||
faux_leather,attr_Material_U_9,Material_U,9
|
||||
flannel,attr_Material_U_10,Material_U,9
|
||||
fleece,attr_Material_U_11,Material_U,9
|
||||
gingham,attr_Material_U_12,Material_U,9
|
||||
jersey,attr_Material_U_13,Material_U,9
|
||||
knit,attr_Material_U_14,Material_U,9
|
||||
lace,attr_Material_U_15,Material_U,9
|
||||
lawn,attr_Material_U_16,Material_U,9
|
||||
neoprene,attr_Material_U_17,Material_U,9
|
||||
organza,attr_Material_U_18,Material_U,9
|
||||
plush,attr_Material_U_19,Material_U,9
|
||||
satin,attr_Material_U_20,Material_U,9
|
||||
serge,attr_Material_U_21,Material_U,9
|
||||
taffeta,attr_Material_U_22,Material_U,9
|
||||
tulle,attr_Material_U_23,Material_U,9
|
||||
tweed,attr_Material_U_24,Material_U,9
|
||||
twill,attr_Material_U_25,Material_U,9
|
||||
velvet,attr_Material_U_26,Material_U,9
|
||||
vinyl,attr_Material_U_27,Material_U,9
|
||||
canvas,attr_Material_U_1,material,9
|
||||
chambray,attr_Material_U_2,material,9
|
||||
chenille,attr_Material_U_3,material,9
|
||||
chiffon,attr_Material_U_4,material,9
|
||||
corduroy,attr_Material_U_5,material,9
|
||||
crepe,attr_Material_U_6,material,9
|
||||
denim,attr_Material_U_7,material,9
|
||||
faux_fur,attr_Material_U_8,material,9
|
||||
faux_leather,attr_Material_U_9,material,9
|
||||
flannel,attr_Material_U_10,material,9
|
||||
fleece,attr_Material_U_11,material,9
|
||||
gingham,attr_Material_U_12,material,9
|
||||
jersey,attr_Material_U_13,material,9
|
||||
knit,attr_Material_U_14,material,9
|
||||
lace,attr_Material_U_15,material,9
|
||||
lawn,attr_Material_U_16,material,9
|
||||
neoprene,attr_Material_U_17,material,9
|
||||
organza,attr_Material_U_18,material,9
|
||||
plush,attr_Material_U_19,material,9
|
||||
satin,attr_Material_U_20,material,9
|
||||
serge,attr_Material_U_21,material,9
|
||||
taffeta,attr_Material_U_22,material,9
|
||||
tulle,attr_Material_U_23,material,9
|
||||
tweed,attr_Material_U_24,material,9
|
||||
twill,attr_Material_U_25,material,9
|
||||
velvet,attr_Material_U_26,material,9
|
||||
vinyl,attr_Material_U_27,material,9
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user