attribute 字段名规范

This commit is contained in:
zhouchengrong
2024-03-28 10:30:18 +08:00
parent 2931dc2a41
commit ddcc8b4300
297 changed files with 5098 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM python:3.9
ENV TZ=Asia/Shanghai
RUN apt update
RUN apt install -y vim
RUN apt install -y libgl1-mesa-glx
COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN pip install gunicorn
RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
RUN pip install mmcv==1.4.2 -f https://download.openmmlab.com/mmcv/dist/cu117/torch1.13/index.html
WORKDIR /app
COPY . .
ENV FLASK_APP=manage.py
LABEL maintainer="zchengrong@yeah.net" \
description="My Python 3.9 - trinity mixi " \
version="1.0" \
name="trinity_mixi"
CMD ["gunicorn", "-c", "gunicorn_config.py", "app.main:app"]

45
README.md Normal file
View File

@@ -0,0 +1,45 @@
文件解释
-----------
样例包括:
* README.md - 本文件
* Dockerfile - 用以自动构建 Docker 镜像的脚本
* requirements.txt - 依赖包文件
* main.py - 主 Flask 服务器端源代码
* python-version : 3.9
快速开始
---------------
如下这些引导,假定你想在自己的电脑上开发本项目。
1. 安装依赖
$ conda create -n trinity_client_mixi python=3.9 -y
$ conda activate trinity_client_mixi
$ pip install -r requirements.txt
$ conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia -y
$ pip install mmcv==1.4.2 -f https://download.openmmlab.com/mmcv/dist/cu117/torch1.13/index.html
2. 启动服务器
$ uvicorn app.main:app --host 0.0.0.0 --port 8000
3. 打开 http://127.0.0.1:8000/docs
Docker 部署
---------------
1. 构建镜像
$ cd {workspace}
$ docker build -t trinity_client_mixi
2. 使用docker-compose 启动
$ docker-compose up -d
3. 查看日志
$ docker-compose logs -f

0
app/__init__.py Normal file
View File

0
app/api/__init__.py Normal file
View File

19
app/api/api_attribute.py Normal file
View File

@@ -0,0 +1,19 @@
import logging
from pprint import pprint
from fastapi import APIRouter
from app.schemas.attribute import AttributeModel
from app.service.attribute_recognition import const, const_debug
from app.service.attribute_recognition.service import AttributeRecognition
logger = logging.getLogger()
router = APIRouter()
@router.post("")
def attribute(request_data: AttributeModel):
service = AttributeRecognition()
response = service.attribute(const, request_data)
logger.info("test")
return {"code": 200, "message": "ok", "data": response}

View File

@@ -0,0 +1,47 @@
import logging
import time
from fastapi import APIRouter
from app.schemas.outfit_matcher import OutfitMatcher
from app.service.outfit_matcher.dataset import FashionDataset
from app.service.outfit_matcher.outfit_evaluator import OutfitMaterTypeAware
from app.service.utils.decorator import RunTime
logger = logging.getLogger()
router = APIRouter()
@RunTime
@router.post("outfit_matcher")
def outfit_matcher(request_item: OutfitMatcher):
request_item = dict(request_item)
for i in range(len(request_item['query'])):
request_item['query'][i] = dict(request_item['query'][i])
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
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}

13
app/api/api_route.py Normal file
View File

@@ -0,0 +1,13 @@
from fastapi import APIRouter
from app.api import api_test
from app.api import api_outfit_matcher
from app.api import api_attribute
from app.api import api_similar_match
router = APIRouter()
router.include_router(api_test.router, tags=["test"], prefix="/test")
router.include_router(api_outfit_matcher.router, tags=["outfit_matcher"], prefix="/api/outfit_matcher")
router.include_router(api_attribute.router, tags=["attribute"], prefix="/api/attribute")
router.include_router(api_similar_match.router, tags=["similar_match"], prefix="/api/similar_match")

View File

@@ -0,0 +1,28 @@
import logging
import time
from fastapi import APIRouter
from app.schemas.similar_match import SimilarMatchMItem
from app.service.similar_match.service import SimilarMatch
from app.service.utils.decorator import RunTime
logger = logging.getLogger()
router = APIRouter()
@RunTime
@router.post("similar_match")
def similar_match(request_item: SimilarMatchMItem):
try:
if request_item.result_number <= 0:
raise KeyError("result number can't be less than 0")
service = SimilarMatch(request_item)
search_response = service.match_features()
response_data = []
for response in search_response[0]:
response_data.append(response['entity'])
return {"message": "ok", "data": response_data}
except KeyError as e:
logger.warning(str(e))
return {"message": "result number can't be less than 0", "data": []}

12
app/api/api_test.py Normal file
View File

@@ -0,0 +1,12 @@
import logging
from fastapi import APIRouter
logger = logging.getLogger()
router = APIRouter()
@router.get("")
def test():
logger.info("test")
return {"message": "ok"}

0
app/core/__init__.py Normal file
View File

49
app/core/config.py Normal file
View File

@@ -0,0 +1,49 @@
import logging
import os
from dotenv import load_dotenv
from pydantic import BaseSettings
BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../'))
logging.info(f"BASE_DIR : {BASE_DIR}")
load_dotenv(os.path.join(BASE_DIR, '.env'))
class Settings(BaseSettings):
PROJECT_NAME = os.getenv('PROJECT_NAME', 'FASTAPI BASE')
SECRET_KEY = os.getenv('SECRET_KEY', '')
API_PREFIX = ''
BACKEND_CORS_ORIGINS = ['*']
DATABASE_URL = os.getenv('SQL_DATABASE_URL', '')
ACCESS_TOKEN_EXPIRE_SECONDS: int = 60 * 60 * 24 * 7 # Token expired after 7 days
SECURITY_ALGORITHM = 'HS256'
LOGGING_CONFIG_FILE = os.path.join(BASE_DIR, 'logging_env.py')
settings = Settings()
MINIO_IP = "18.167.251.121"
MINIO_PORT = 8000
MINIO_SECURE = False
MINIO_ACCESS = "e8zc55mzDOh4IzRrZ9Oa"
MINIO_SECRET = "uHfqJ7UkwA1PTDGfnA44Hp9ux5YkZTkzZLjeOYhE"
OM_TRITON_IP = "10.1.1.240"
OM_TRITON_PORT = "10010"
ATT_TRITON_IP = "10.1.1.240"
ATT_TRITON_PORT = "10020"
# service env
# LOGS_PATH = "app/logs/errors.log"
# FASHION_CATEGORIES = "app/service/outfit_matcher/config/fashion_categories.json"
# FASHION_CATEGORIES_MAPPING = "app/service/outfit_matcher/config/fashion_category_mapping.json"
# pycharm debug
LOGS_PATH = "logs/errors.log"
FASHION_CATEGORIES = "service/outfit_matcher/config/fashion_categories.json"
FASHION_CATEGORIES_MAPPING = "service/outfit_matcher/config/fashion_category_mapping.json"
# LOGS_PATH = "app/logs/errors.log"
# FASHION_CATEGORIES = "./config/fashion_categories.json"
# FASHION_CATEGORIES_MAPPING = "./config/fashion_category_mapping.json"

39
app/main.py Normal file
View File

@@ -0,0 +1,39 @@
import uvicorn
from fastapi import FastAPI
import logging.config
from app.api.api_route import router
from app.core.config import settings
from logging_env import LOGGER_CONFIG_DICT
logging.config.dictConfig(LOGGER_CONFIG_DICT)
from starlette.middleware.cors import CORSMiddleware
def get_application() -> FastAPI:
application = FastAPI(
title=settings.PROJECT_NAME, docs_url="/docs", redoc_url='/re-docs',
openapi_url=f"{settings.API_PREFIX}/openapi.json",
description='''
Base frame with FastAPI
- out_matcher_hon API
'''
)
application.add_middleware(
CORSMiddleware,
allow_origins=[str(origin) for origin in settings.BACKEND_CORS_ORIGINS],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
application.include_router(router=router, prefix=settings.API_PREFIX)
return application
app = get_application()
if __name__ == '__main__':
uvicorn.run(app, host="0.0.0.0", port=8000)

6
app/schemas/attribute.py Normal file
View File

@@ -0,0 +1,6 @@
from pydantic import BaseModel
class AttributeModel(BaseModel):
upload_img_path: list
upload_img_id: list

View File

@@ -0,0 +1,15 @@
from pydantic import BaseModel
class OMDataItem(BaseModel):
item_name: str
semantic_category: str
image_path: str
class OutfitMatcher(BaseModel):
topk: int
max_outfits: int
is_best: bool
query: list[OMDataItem]
database: list[OMDataItem]

View File

@@ -0,0 +1,6 @@
from pydantic import BaseModel
class SimilarMatchMItem(BaseModel):
image_path: str
result_number: int

View File

@@ -0,0 +1,139 @@
import torch
device = torch.device('cuda')
top_discription_list = ['app/service/attribute_recognition/discriptor/top/1_top_length.csv',
'app/service/attribute_recognition/discriptor/top/2_top_type.csv',
'app/service/attribute_recognition/discriptor/top/3_top_Sleeve_length.csv',
'app/service/attribute_recognition/discriptor/top/4_top_Sleeve_shape.csv',
'app/service/attribute_recognition/discriptor/top/5_top_Sleeve_shoulder.csv',
'app/service/attribute_recognition/discriptor/top/6_top_Neckline.csv',
'app/service/attribute_recognition/discriptor/top/7_outer_Print.csv',
'app/service/attribute_recognition/discriptor/top/8_outer_Material.csv',
# 'app/service/attribute_recognition/discriptor/top/9_top_Material.csv',
'app/service/attribute_recognition/discriptor/top/9_top_Softness.csv',
'app/service/attribute_recognition/discriptor/top/10_top_Design.csv',
'app/service/attribute_recognition/discriptor/top/11_top_OPType.csv',
'app/service/attribute_recognition/discriptor/top/12_top_Silhouette.csv',
'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 = [
'app/service/attribute_recognition/discriptor/bottom/2_bottom_subtype.csv',
# 'app/service/attribute_recognition/discriptor/bottom/3_bottom_structure.csv',
'app/service/attribute_recognition/discriptor/bottom/3_bottom_length.csv',
'app/service/attribute_recognition/discriptor/bottom/7_outer_Print.csv',
'app/service/attribute_recognition/discriptor/bottom/8_outer_Material.csv',
'app/service/attribute_recognition/discriptor/bottom/5_bottom_Softness.csv',
'app/service/attribute_recognition/discriptor/bottom/8_bottom_Silhouette.csv',
'app/service/attribute_recognition/discriptor/bottom/7_bottom_OPType.csv',
'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 = ['app/service/attribute_recognition/discriptor/outwear/1_outer_length.csv',
# 'app/service/attribute_recognition/discriptor/outwear/2_outer_type.csv',
'app/service/attribute_recognition/discriptor/outwear/3_outer_sleeve_length.csv',
'app/service/attribute_recognition/discriptor/outwear/4_outer_sleeve_shape.csv',
'app/service/attribute_recognition/discriptor/outwear/5_outer_sleeve_shoulder.csv',
'app/service/attribute_recognition/discriptor/outwear/6_outer_Collar.csv',
'app/service/attribute_recognition/discriptor/outwear/7_outer_Print.csv',
'app/service/attribute_recognition/discriptor/outwear/8_outer_Material.csv',
'app/service/attribute_recognition/discriptor/outwear/9_outer_Softness.csv',
'app/service/attribute_recognition/discriptor/outwear/10_outer_Design.csv',
# 'app/service/attribute_recognition/discriptor/outwear/11_outer_opening.csv',
'app/service/attribute_recognition/discriptor/outwear/12_outer_OPType.csv',
'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 = ['app/service/attribute_recognition/discriptor/jumpsuit/1_jumsuit_length.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/2_jumpsuit_Sleeve_length.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/3_jumpsuit_Sleeve_shape.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/4_jumpsuit_Sleeve_shoulder.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/5_jumpsuit_Neckline.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/6_jumpsuit_Collar.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/7_jumpsuit_Print.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/8_jumpsuit_Material.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/9_jumpsuit_Softness.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/10_jumsuit_design.csv',
'app/service/attribute_recognition/discriptor/jumpsuit/11_jumpsuit_OPType.csv',
'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 = ['app/service/attribute_recognition/discriptor/dress/1_dress_length.csv',
'app/service/attribute_recognition/discriptor/dress/3_top_Sleeve_length.csv',
'app/service/attribute_recognition/discriptor/dress/4_top_Sleeve_shape.csv',
'app/service/attribute_recognition/discriptor/dress/5_top_Sleeve_shoulder.csv',
'app/service/attribute_recognition/discriptor/dress/ori5_dress_Neckline.csv',
'app/service/attribute_recognition/discriptor/dress/7_outer_Print.csv',
'app/service/attribute_recognition/discriptor/dress/7_top_Collar.csv',
'app/service/attribute_recognition/discriptor/dress/8_outer_Material.csv',
'app/service/attribute_recognition/discriptor/dress/9_dress_Design.csv',
'app/service/attribute_recognition/discriptor/dress/9_top_Softness.csv',
'app/service/attribute_recognition/discriptor/dress/11_dress_Silhouette.csv',
# 'app/service/attribute_recognition/discriptor/dress/11_top_OPType.csv',
'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 = 'app/service/attribute_recognition/discriptor/category/category_dis.csv'
category_model = 'category'

View 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'

View File

@@ -0,0 +1,21 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 A Line Skirt bottom_Sub-Type_1 Sub_Type 2
3 Bodycon Skirt bottom_Sub-Type_2 Sub_Type 2
4 Boot-Cut bottom_Sub-Type_3 Sub_Type 2
5 Bubble skirt bottom_Sub-Type_4 Sub_Type 2
6 Cargo Pants bottom_Sub-Type_5 Sub_Type 2
7 Culottes bottom_Sub-Type_6 Sub_Type 2
8 Handkerchief Skirt bottom_Sub-Type_7 Sub_Type 2
9 Jeans bottom_Sub-Type_8 Sub_Type 2
10 Joggers bottom_Sub-Type_9 Sub_Type 2
11 Leather pants bottom_Sub-Type_10 Sub_Type 2
12 Leggings bottom_Sub-Type_11 Sub_Type 2
13 Mermaid bottom_Sub-Type_12 Sub_Type 2
14 Pattened pants bottom_Sub-Type_13 Sub_Type 2
15 Peg leg Pants-Cigarette Pants bottom_Sub-Type_14 Sub_Type 2
16 Pencil Skirt bottom_Sub-Type_15 Sub_Type 2
17 Pleated Skirt bottom_Sub-Type_16 Sub_Type 2
18 Shorts bottom_Sub-Type_17 Sub_Type 2
19 Skater Skirt bottom_Sub-Type_18 Sub_Type 2
20 Suit Trousers bottom_Sub-Type_19 Sub_Type 2
21 Tier Skirt bottom_Sub-Type_20 Sub_Type 2

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Short attr_BTM_length_1 Length 3
3 Middle attr_BTM_length_2 Length 3
4 Seven attr_BTM_length_3 Length 3
5 Nine attr_BTM_length_4 Length 3
6 Long attr_BTM_length_5 Length 3

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Soft,attr_Softness_B_1,Softness,5
Medium,attr_Softness_B_2,Softness,5
Hard,attr_Softness_B_3,Softness,5
1 labelName join_attr taskName taskId
2 Soft attr_Softness_B_1 Softness 5
3 Medium attr_Softness_B_2 Softness 5
4 Hard attr_Softness_B_3 Softness 5

View File

@@ -0,0 +1,17 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_B_1 Design 6
3 Tiered attr_Design_B_2 Design 6
4 Tassel attr_Design_B_3 Design 6
5 Ruffle attr_Design_B_4 Design 6
6 Pleated attr_Design_B_5 Design 6
7 Wrap attr_Design_B_6 Design 6
8 Ripped attr_Design_B_7 Design 6
9 Cut out attr_Design_B_8 Design 6
10 Eyelet attr_Design_B_9 Design 6
11 Folded attr_Design_B_10 Design 6
12 Tied attr_Design_B_11 Design 6
13 Drapes attr_Design_B_12 Design 6
14 Ribbon attr_Design_B_13 Design 6
15 Button attr_Design_B_14 Design 6
16 Split attr_Design_B_15 Design 6
17 Fishtail attr_Design_B_16 Design 6

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Button attr_OPType_B_1 Opening_Type 7
3 Zipper attr_OPType_B_2 Opening_Type 7
4 Thread attr_OPType_B_3 Opening_Type 7
5 Hook attr_OPType_B_4 Opening_Type 7
6 Elastic attr_OPType_B_5 Opening_Type 7

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Abstract attr_Print_O_1 Print 7
3 Allover attr_Print_O_2 Print 7
4 Animal attr_Print_O_3 Print 7
5 Camouflage attr_Print_O_4 Print 7
6 Checks attr_Print_O_5 Print 7
7 Color_block attr_Print_O_6 Print 7
8 Disty print attr_Print_O_7 Print 7
9 Dotted attr_Print_O_8 Print 7
10 Floral attr_Print_O_9 Print 7
11 Graphic print attr_Print_O_10 Print 7
12 Logo and slogan attr_Print_O_11 Print 7
13 Patchwork attr_Print_O_12 Print 7
14 Plain attr_Print_O_13 Print 7
15 Plain_dnim attr_Print_O_14 Print 7
16 Stripe attr_Print_O_15 Print 7

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 A Line attr_Silhouette_B_1 Silhouette 8
3 H Shape attr_Silhouette_B_2 Silhouette 8
4 Slim attr_Silhouette_B_3 Silhouette 8
5 Peg-leg attr_Silhouette_B_4 Silhouette 8
6 Peplum attr_Silhouette_B_5 Silhouette 8

View File

@@ -0,0 +1,28 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Canvas attr_Material_O_1 Material 8
3 Chambray attr_Material_O_2 Material 8
4 Chenille attr_Material_O_3 Material 8
5 Chiffon attr_Material_O_4 Material 8
6 Corduroy attr_Material_O_5 Material 8
7 Crepe attr_Material_O_6 Material 8
8 Denim attr_Material_O_7 Material 8
9 Faux_fur attr_Material_O_8 Material 8
10 Faux_leather attr_Material_O_9 Material 8
11 Flannel attr_Material_O_10 Material 8
12 Fleece attr_Material_O_11 Material 8
13 Gingham attr_Material_O_12 Material 8
14 Jersey attr_Material_O_13 Material 8
15 Knit attr_Material_O_14 Material 8
16 Lace attr_Material_O_15 Material 8
17 Lawn attr_Material_O_16 Material 8
18 Neoprene attr_Material_O_17 Material 8
19 Organza attr_Material_O_18 Material 8
20 Plush attr_Material_O_19 Material 8
21 Satin attr_Material_O_20 Material 8
22 Serge attr_Material_O_21 Material 8
23 Taffeta attr_Material_O_22 Material 8
24 Tulle attr_Material_O_23 Material 8
25 Tweed attr_Material_O_24 Material 8
26 Twill attr_Material_O_25 Material 8
27 Velvet attr_Material_O_26 Material 8
28 Vinyl attr_Material_O_27 Material 8

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 A Line attr_Silhouette_B_1 Silhouette 10
3 H Shape attr_Silhouette_B_2 Silhouette 10
4 Slim attr_Silhouette_B_3 Silhouette 10
5 Peg-top attr_Silhouette_B_4 Silhouette 10
6 Peplum attr_Silhouette_B_5 Silhouette 10

View File

@@ -0,0 +1,3 @@
labelName,join_attr,taskName,taskId
Pants,BTM_Type_1,Type,1
Skirt,BTM_Type_2,Type,1
1 labelName join_attr taskName taskId
2 Pants BTM_Type_1 Type 1
3 Skirt BTM_Type_2 Type 1

View File

@@ -0,0 +1,47 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Jeans BTM_Sub-Type_1 Sub_Type 2
3 Leggings BTM_Sub-Type_2 Sub_Type 2
4 Joggers BTM_Sub-Type_3 Sub_Type 2
5 Suit Trousers BTM_Sub-Type_4 Sub_Type 2
6 Cargo Pants BTM_Sub-Type_5 Sub_Type 2
7 Culottes BTM_Sub-Type_6 Sub_Type 2
8 Peg leg Pants BTM_Sub-Type_7 Sub_Type 2
9 A Line Skirt_gathered BTM_Sub-Type_8 Sub_Type 2
10 Pencil Skirt BTM_Sub-Type_9 Sub_Type 2
11 Handkerchief Skirt BTM_Sub-Type_10 Sub_Type 2
12 Mermaid/Fishtail Skirt BTM_Sub-Type_11 Sub_Type 2
13 Skater Skirt BTM_Sub-Type_12 Sub_Type 2
14 Bodycon Skirt BTM_Sub-Type_13 Sub_Type 2
15 Shorts BTM_Sub-Type_14 Sub_Type 2
16 boot-cut_flare BTM_Sub-Type_15 Sub_Type 2
17 Pleated Skirt BTM_Sub-Type_16 Sub_Type 2
18 Bubble skirt BTM_Sub-Type_17 Sub_Type 2
19 Leather pants BTM_Sub-Type_18 Sub_Type 2
20 pattened pants BTM_Sub-Type_19 Sub_Type 2
21 Tier Skirt BTM_Sub-Type_20 Sub_Type 2
22 asymmetric_mullet BTM_Sub-Type_21 Sub_Type 2
23 baggy BTM_Sub-Type_22 Sub_Type 2
24 denim skirt BTM_Sub-Type_23 Sub_Type 2
25 flare skirt BTM_Sub-Type_24 Sub_Type 2
26 fringe skirt BTM_Sub-Type_25 Sub_Type 2
27 godet skirt BTM_Sub-Type_26 Sub_Type 2
28 high rise pants BTM_Sub-Type_27 Sub_Type 2
29 hight waist skirt BTM_Sub-Type_28 Sub_Type 2
30 hat pants BTM_Sub-Type_29 Sub_Type 2
31 leather skirts BTM_Sub-Type_30 Sub_Type 2
32 long skirts BTM_Sub-Type_31 Sub_Type 2
33 low rise pants BTM_Sub-Type_32 Sub_Type 2
34 mini skirt BTM_Sub-Type_33 Sub_Type 2
35 panel kirt BTM_Sub-Type_34 Sub_Type 2
36 peg top skirt BTM_Sub-Type_35 Sub_Type 2
37 pencil pants BTM_Sub-Type_36 Sub_Type 2
38 shorts (denim) BTM_Sub-Type_37 Sub_Type 2
39 skinny_cigarette pants BTM_Sub-Type_38 Sub_Type 2
40 split skirt BTM_Sub-Type_39 Sub_Type 2
41 stirrup BTM_Sub-Type_40 Sub_Type 2
42 stranget pants BTM_Sub-Type_41 Sub_Type 2
43 straight skirt BTM_Sub-Type_42 Sub_Type 2
44 wide leg pants BTM_Sub-Type_43 Sub_Type 2
45 wrap skirt BTM_Sub-Type_44 Sub_Type 2
46 Jeans BTM_Sub-Type_45 Sub_Type 2
47 Leggings BTM_Sub-Type_46 Sub_Type 2

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Woven,attr_BTM_Structure_1,Structure,3
Knit,attr_BTM_Structure_2,Structure,3
Sweater,attr_BTM_Structure_3,Structure,3
1 labelName join_attr taskName taskId
2 Woven attr_BTM_Structure_1 Structure 3
3 Knit attr_BTM_Structure_2 Structure 3
4 Sweater attr_BTM_Structure_3 Structure 3

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Short attr_BTM_length_1 Length 4
3 Middle attr_BTM_length_2 Length 4
4 Seven attr_BTM_length_3 Length 4
5 Nine attr_BTM_length_4 Length 4
6 Long attr_BTM_length_5 Length 4

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 abstract attr_Print_B_1 Print 5
3 allover attr_Print_B_2 Print 5
4 animal printed attr_Print_B_3 Print 5
5 Camouflage attr_Print_B_4 Print 5
6 checks attr_Print_B_5 Print 5
7 color_block attr_Print_B_6 Print 5
8 disty print attr_Print_B_7 Print 5
9 dotted attr_Print_B_8 Print 5
10 floral attr_Print_B_9 Print 5
11 graphic print attr_Print_B_10 Print 5
12 logo and slogan print attr_Print_B_11 Print 5
13 patchwork attr_Print_B_12 Print 5
14 plain attr_Print_B_13 Print 5
15 plain_dnim attr_Print_B_14 Print 5
16 stripe attr_Print_B_15 Print 5

View File

@@ -0,0 +1,28 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 canvas attr_Material_B_1 Material 6
3 chambray attr_Material_B_2 Material 6
4 chenille attr_Material_B_3 Material 6
5 chiffon attr_Material_B_4 Material 6
6 corduroy attr_Material_B_5 Material 6
7 crepe attr_Material_B_6 Material 6
8 denim attr_Material_B_7 Material 6
9 faux_fur attr_Material_B_8 Material 6
10 faux_leather attr_Material_B_9 Material 6
11 flannel attr_Material_B_10 Material 6
12 fleece attr_Material_B_11 Material 6
13 gingham attr_Material_B_12 Material 6
14 jersey attr_Material_B_13 Material 6
15 knit attr_Material_B_14 Material 6
16 lace attr_Material_B_15 Material 6
17 lawn attr_Material_B_16 Material 6
18 neoprene attr_Material_B_17 Material 6
19 organza attr_Material_B_18 Material 6
20 plush attr_Material_B_19 Material 6
21 satin attr_Material_B_20 Material 6
22 serge attr_Material_B_21 Material 6
23 taffeta attr_Material_B_22 Material 6
24 tulle attr_Material_B_23 Material 6
25 tweed attr_Material_B_24 Material 6
26 twill attr_Material_B_25 Material 6
27 velvet attr_Material_B_26 Material 6
28 vinyl attr_Material_B_27 Material 6

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Soft,attr_Softness_B_1,Softness,7
Medium,attr_Softness_B_2,Softness,7
Hard,attr_Softness_B_3,Softness,7
1 labelName join_attr taskName taskId
2 Soft attr_Softness_B_1 Softness 7
3 Medium attr_Softness_B_2 Softness 7
4 Hard attr_Softness_B_3 Softness 7

View File

@@ -0,0 +1,17 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_B_1 Design 8
3 Tiered attr_Design_B_2 Design 8
4 Tassel attr_Design_B_3 Design 8
5 Ruffle attr_Design_B_4 Design 8
6 Pleated attr_Design_B_5 Design 8
7 Wrap attr_Design_B_6 Design 8
8 Ripped attr_Design_B_7 Design 8
9 Cut out attr_Design_B_8 Design 8
10 Eyelet attr_Design_B_9 Design 8
11 Folded attr_Design_B_10 Design 8
12 Tied attr_Design_B_11 Design 8
13 Drapes attr_Design_B_12 Design 8
14 Ribbon attr_Design_B_13 Design 8
15 Button attr_Design_B_14 Design 8
16 Split attr_Design_B_15 Design 8
17 Fishtail attr_Design_B_16 Design 8

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Button attr_OPType_B_1 Opening_Type 9
3 Zipper attr_OPType_B_2 Opening_Type 9
4 Thread attr_OPType_B_3 Opening_Type 9
5 Hook attr_OPType_B_4 Opening_Type 9
6 Elastic attr_OPType_B_5 Opening_Type 9

View File

@@ -0,0 +1,7 @@
labelName,join_attr,taskName,taskId
top,attr_top,category,1
pants,attr_pants,category,1
skirt,attr_skirt,category,1
dress,attr_dress,category,1
outwear,attr_outwear,category,1
jumpsuit,attr_jumpsuit,category,1
1 labelName join_attr taskName taskId
2 top attr_top category 1
3 pants attr_pants category 1
4 skirt attr_skirt category 1
5 dress attr_dress category 1
6 outwear attr_outwear category 1
7 jumpsuit attr_jumpsuit category 1

View File

@@ -0,0 +1,11 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 A Line attr_Silhouette_U_1 Silhouette 11
3 H Shape attr_Silhouette_U_2 Silhouette 11
4 Slim attr_Silhouette_U_3 Silhouette 11
5 Oversized attr_Silhouette_U_4 Silhouette 11
6 Cacoon attr_Silhouette_U_5 Silhouette 11
7 Empire attr_Silhouette_U_6 Silhouette 11
8 Hourglass attr_Silhouette_U_7 Silhouette 11
9 Mermaid attr_Silhouette_U_8 Silhouette 11
10 Sheath attr_Silhouette_U_9 Silhouette 11
11 Tent attr_Silhouette_U_10 Silhouette 11

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Button attr_OPType_U_1 Opening_Type 11
3 Zipper attr_OPType_U_2 Opening_Type 11
4 Thread attr_OPType_U_3 Opening_Type 11
5 Hook attr_OPType_U_4 Opening_Type 11

View File

@@ -0,0 +1,20 @@
labelName,join_attr,taskName,taskId
Evening gown,attr_dresstype_1,Type,12
Shirt-dress,attr_dresstype_2,Type,12
Coat dress,attr_dresstype_3,Type,12
Handkerchief dress,attr_dresstype_4,Type,12
Jumper dress,attr_dresstype_5,Type,12
Dungaree dress,attr_dresstype_6,Type,12
Skater dress,attr_dresstype_7,Type,12
Tea dress,attr_dresstype_8,Type,12
Mermaid dress,attr_dresstype_9,Type,12
Cocktail dress,attr_dresstype_10,Type,12
A-Line dress,attr_dresstype_11,Type,12
Bodycon dress,attr_dresstype_12,Type,12
Maxi dress,attr_dresstype_13,Type,12
Office dress,attr_dresstype_14,Type,12
Pencil dress,attr_dresstype_15,Type,12
Sheer dress,attr_dresstype_16,Type,12
Shift dress,attr_dresstype_17,Type,12
Slip dress,attr_dresstype_18,Type,12
T-shirt dress,attr_dresstype_19,Type,12
1 labelName join_attr taskName taskId
2 Evening gown attr_dresstype_1 Type 12
3 Shirt-dress attr_dresstype_2 Type 12
4 Coat dress attr_dresstype_3 Type 12
5 Handkerchief dress attr_dresstype_4 Type 12
6 Jumper dress attr_dresstype_5 Type 12
7 Dungaree dress attr_dresstype_6 Type 12
8 Skater dress attr_dresstype_7 Type 12
9 Tea dress attr_dresstype_8 Type 12
10 Mermaid dress attr_dresstype_9 Type 12
11 Cocktail dress attr_dresstype_10 Type 12
12 A-Line dress attr_dresstype_11 Type 12
13 Bodycon dress attr_dresstype_12 Type 12
14 Maxi dress attr_dresstype_13 Type 12
15 Office dress attr_dresstype_14 Type 12
16 Pencil dress attr_dresstype_15 Type 12
17 Sheer dress attr_dresstype_16 Type 12
18 Shift dress attr_dresstype_17 Type 12
19 Slip dress attr_dresstype_18 Type 12
20 T-shirt dress attr_dresstype_19 Type 12

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
Maxi,attr_Dress_length_1,Length,1
Midi,attr_Dress_length_2,Length,1
Mini,attr_Dress_length_3,Length,1
Over the knee,attr_Dress_length_4,Length,1
Floor Length,attr_Dress_length_5,Length,1
1 labelName join_attr taskName taskId
2 Maxi attr_Dress_length_1 Length 1
3 Midi attr_Dress_length_2 Length 1
4 Mini attr_Dress_length_3 Length 1
5 Over the knee attr_Dress_length_4 Length 1
6 Floor Length attr_Dress_length_5 Length 1

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Sleeveless attr_Sleeve_length_1 Sleeve_Length 3
3 Short attr_Sleeve_length_2 Sleeve_Length 3
4 Middle attr_Sleeve_length_3 Sleeve_Length 3
5 Seven attr_Sleeve_length_4 Sleeve_Length 3
6 Long attr_Sleeve_length_5 Sleeve_Length 3

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shape_1 Sleeve_Shape 4
3 Slim attr_Sleeve_shape_2 Sleeve_Shape 4
4 Puff attr_Sleeve_shape_3 Sleeve_Shape 4
5 Bell attr_Sleeve_shape_4 Sleeve_Shape 4
6 Batwing attr_Sleeve_shape_5 Sleeve_Shape 4
7 Shirt attr_Sleeve_shape_6 Sleeve_Shape 4
8 Rib attr_Sleeve_shape_7 Sleeve_Shape 4
9 Raglan attr_Sleeve_shape_8 Sleeve_Shape 4

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shoulder_1 Sleeve_Shoulder 5
3 Cold attr_Sleeve_shoulder_2 Sleeve_Shoulder 5
4 Tucked attr_Sleeve_shoulder_3 Sleeve_Shoulder 5
5 Balmain attr_Sleeve_shoulder_4 Sleeve_Shoulder 5

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Round attr_Neckline_1 Neckline 6
3 V attr_Neckline_2 Neckline 6
4 Square attr_Neckline_3 Neckline 6
5 One-shoulder attr_Neckline_4 Neckline 6
6 Off-shoulder attr_Neckline_5 Neckline 6
7 Strapless attr_Neckline_6 Neckline 6

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Abstract attr_Print_O_1 Print 7
3 Allover attr_Print_O_2 Print 7
4 Animal attr_Print_O_3 Print 7
5 Camouflage attr_Print_O_4 Print 7
6 Checks attr_Print_O_5 Print 7
7 Color_block attr_Print_O_6 Print 7
8 Disty print attr_Print_O_7 Print 7
9 Dotted attr_Print_O_8 Print 7
10 Floral attr_Print_O_9 Print 7
11 Graphic print attr_Print_O_10 Print 7
12 Logo and slogan attr_Print_O_11 Print 7
13 Patchwork attr_Print_O_12 Print 7
14 Plain attr_Print_O_13 Print 7
15 Plain_dnim attr_Print_O_14 Print 7
16 Stripe attr_Print_O_15 Print 7

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Peterpan attr_Collar_1 Collar 7
3 Shirt attr_Collar_2 Collar 7
4 Rib attr_Collar_3 Collar 7
5 Turtle attr_Collar_4 Collar 7
6 Lapel attr_Collar_5 Collar 7
7 Hoodie attr_Collar_6 Collar 7
8 Mandarin attr_Collar_7 Collar 7
9 Tie attr_Collar_8 Collar 7
10 Ruffle attr_Collar_9 Collar 7
11 Cowl attr_Collar_10 Collar 7

View File

@@ -0,0 +1,28 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Canvas attr_Material_O_1 Material 8
3 Chambray attr_Material_O_2 Material 8
4 Chenille attr_Material_O_3 Material 8
5 Chiffon attr_Material_O_4 Material 8
6 Corduroy attr_Material_O_5 Material 8
7 Crepe attr_Material_O_6 Material 8
8 Denim attr_Material_O_7 Material 8
9 Faux_fur attr_Material_O_8 Material 8
10 Faux_leather attr_Material_O_9 Material 8
11 Flannel attr_Material_O_10 Material 8
12 Fleece attr_Material_O_11 Material 8
13 Gingham attr_Material_O_12 Material 8
14 Jersey attr_Material_O_13 Material 8
15 Knit attr_Material_O_14 Material 8
16 Lace attr_Material_O_15 Material 8
17 Lawn attr_Material_O_16 Material 8
18 Neoprene attr_Material_O_17 Material 8
19 Organza attr_Material_O_18 Material 8
20 Plush attr_Material_O_19 Material 8
21 Satin attr_Material_O_20 Material 8
22 Serge attr_Material_O_21 Material 8
23 Taffeta attr_Material_O_22 Material 8
24 Tulle attr_Material_O_23 Material 8
25 Tweed attr_Material_O_24 Material 8
26 Twill attr_Material_O_25 Material 8
27 Velvet attr_Material_O_26 Material 8
28 Vinyl attr_Material_O_27 Material 8

View File

@@ -0,0 +1,19 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_U_1 Design 9
3 Tiered attr_Design_U_2 Design 9
4 Tassel attr_Design_U_3 Design 9
5 Ruffle attr_Design_U_4 Design 9
6 Pleated attr_Design_U_5 Design 9
7 Wrap attr_Design_U_6 Design 9
8 Ripped attr_Design_U_7 Design 9
9 Cut out attr_Design_U_8 Design 9
10 Eyelet attr_Design_U_9 Design 9
11 Folded attr_Design_U_10 Design 9
12 Tied attr_Design_U_11 Design 9
13 Drapes attr_Design_U_12 Design 9
14 Ribbon attr_Design_U_13 Design 9
15 Button attr_Design_U_14 Design 9
16 Split attr_Design_U_15 Design 9
17 Fishtail attr_Design_U_16 Design 9
18 Cami dress attr_Design_U_17 Design 9
19 Gathering attr_Design_U_18 Design 9

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Soft,attr_Softness_U_1,Softness,9
Medium,attr_Softness_U_2,Softness,9
Hard,attr_Softness_U_3,Softness,9
1 labelName join_attr taskName taskId
2 Soft attr_Softness_U_1 Softness 9
3 Medium attr_Softness_U_2 Softness 9
4 Hard attr_Softness_U_3 Softness 9

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_D_1 Design 10
3 Tiered attr_Design_D_2 Design 10
4 Tassel attr_Design_D_3 Design 10
5 Ruffle attr_Design_D_4 Design 10
6 Pleated attr_Design_D_5 Design 10
7 Wrap attr_Design_D_6 Design 10
8 Ripped attr_Design_D_7 Design 10
9 Cut out attr_Design_D_8 Design 10
10 Eyelet attr_Design_D_9 Design 10
11 Folded attr_Design_D_10 Design 10
12 Tied attr_Design_D_11 Design 10
13 Drapes attr_Design_D_12 Design 10
14 Ribbon attr_Design_D_13 Design 10
15 Button attr_Design_D_14 Design 10
16 Gathering attr_Design_D_15 Design 10

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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
1 labelName join_attr taskName taskId
2 Button attr_OPType_D_1 Opening_Type 11
3 Zipper attr_OPType_D_2 Opening_Type 11
4 Thread attr_OPType_D_3 Opening_Type 11
5 Hook attr_OPType_D_4 Opening_Type 11

View File

@@ -0,0 +1,11 @@
labelName,join_attr,taskName,taskId
A Line,attr_Silhouette_D_1,Silhouette,12
H Shape,attr_Silhouette_D_2,Silhouette,12
Slim,attr_Silhouette_D_3,Silhouette,12
Oversized,attr_Silhouette_D_4,Silhouette,12
Cacoon,attr_Silhouette_D_5,Silhouette,12
Empire,attr_Silhouette_D_6,Silhouette,12
Hourglass,attr_Silhouette_D_7,Silhouette,12
Mermaid,attr_Silhouette_D_8,Silhouette,12
Sheath,attr_Silhouette_D_9,Silhouette,12
Tent,attr_Silhouette_D_10,Silhouette,12
1 labelName join_attr taskName taskId
2 A Line attr_Silhouette_D_1 Silhouette 12
3 H Shape attr_Silhouette_D_2 Silhouette 12
4 Slim attr_Silhouette_D_3 Silhouette 12
5 Oversized attr_Silhouette_D_4 Silhouette 12
6 Cacoon attr_Silhouette_D_5 Silhouette 12
7 Empire attr_Silhouette_D_6 Silhouette 12
8 Hourglass attr_Silhouette_D_7 Silhouette 12
9 Mermaid attr_Silhouette_D_8 Silhouette 12
10 Sheath attr_Silhouette_D_9 Silhouette 12
11 Tent attr_Silhouette_D_10 Silhouette 12

View File

@@ -0,0 +1,20 @@
labelName,join_attr,taskName,taskId
Evening gown,attr_Dress_Type_1,Type,13
Shirt-dress,attr_Dress_Type_2,Type,13
Coat dress,attr_Dress_Type_3,Type,13
Handkerchief dress,attr_Dress_Type_4,Type,13
Jumper dress,attr_Dress_Type_5,Type,13
Dungaree dress,attr_Dress_Type_6,Type,13
Skater dress,attr_Dress_Type_7,Type,13
Tea dress,attr_Dress_Type_8,Type,13
Mermaid dress,attr_Dress_Type_9,Type,13
Cocktail dress,attr_Dress_Type_10,Type,13
A-Line dress,attr_Dress_Type_11,Type,13
Bodycon dress,attr_Dress_Type_12,Type,13
Maxi dress,attr_Dress_Type_13,Type,13
Office dress,attr_Dress_Type_14,Type,13
Pencil dress,attr_Dress_Type_15,Type,13
Sheer dress,attr_Dress_Type_16,Type,13
Shift dress,attr_Dress_Type_17,Type,13
Slip dress,attr_Dress_Type_18,Type,13
T-shirt dress,attr_Dress_Type_19,Type,13
1 labelName join_attr taskName taskId
2 Evening gown attr_Dress_Type_1 Type 13
3 Shirt-dress attr_Dress_Type_2 Type 13
4 Coat dress attr_Dress_Type_3 Type 13
5 Handkerchief dress attr_Dress_Type_4 Type 13
6 Jumper dress attr_Dress_Type_5 Type 13
7 Dungaree dress attr_Dress_Type_6 Type 13
8 Skater dress attr_Dress_Type_7 Type 13
9 Tea dress attr_Dress_Type_8 Type 13
10 Mermaid dress attr_Dress_Type_9 Type 13
11 Cocktail dress attr_Dress_Type_10 Type 13
12 A-Line dress attr_Dress_Type_11 Type 13
13 Bodycon dress attr_Dress_Type_12 Type 13
14 Maxi dress attr_Dress_Type_13 Type 13
15 Office dress attr_Dress_Type_14 Type 13
16 Pencil dress attr_Dress_Type_15 Type 13
17 Sheer dress attr_Dress_Type_16 Type 13
18 Shift dress attr_Dress_Type_17 Type 13
19 Slip dress attr_Dress_Type_18 Type 13
20 T-shirt dress attr_Dress_Type_19 Type 13

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
Maxi,attr_Dress_length_1,Length,1
Midi,attr_Dress_length_2,Length,1
Mini,attr_Dress_length_3,Length,1
Over the knee,attr_Dress_length_4,Length,1
Floor Length,attr_Dress_length_5,Length,1
1 labelName join_attr taskName taskId
2 Maxi attr_Dress_length_1 Length 1
3 Midi attr_Dress_length_2 Length 1
4 Mini attr_Dress_length_3 Length 1
5 Over the knee attr_Dress_length_4 Length 1
6 Floor Length attr_Dress_length_5 Length 1

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Sleeveless attr_Sleeve_length_D_1 Sleeve_Length 2
3 Short attr_Sleeve_length_D_2 Sleeve_Length 2
4 Middle attr_Sleeve_length_D_3 Sleeve_Length 2
5 Seven attr_Sleeve_length_D_4 Sleeve_Length 2
6 Long attr_Sleeve_length_D_5 Sleeve_Length 2

View File

@@ -0,0 +1,9 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shape_D_1 Sleeve_Shape 3
3 Slim attr_Sleeve_shape_D_2 Sleeve_Shape 3
4 Puff attr_Sleeve_shape_D_3 Sleeve_Shape 3
5 Bell attr_Sleeve_shape_D_4 Sleeve_Shape 3
6 Batwing attr_Sleeve_shape_D_5 Sleeve_Shape 3
7 Shirt attr_Sleeve_shape_D_6 Sleeve_Shape 3
8 Rib attr_Sleeve_shape_D_7 Sleeve_Shape 3
9 Raglan attr_Sleeve_shape_D_8 Sleeve_Shape 3

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shoulder_D_1 Sleeve_Shoulder 4
3 Cold attr_Sleeve_shoulder_D_2 Sleeve_Shoulder 4
4 Tucked attr_Sleeve_shoulder_D_3 Sleeve_Shoulder 4
5 Balmain attr_Sleeve_shoulder_D_4 Sleeve_Shoulder 4

View File

@@ -0,0 +1,17 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Round attr_Neckline_D_1 Neckline 5
3 V attr_Neckline_D_2 Neckline 5
4 Square attr_Neckline_D_3 Neckline 5
5 One-shoulder attr_Neckline_D_4 Neckline 5
6 Off-shoulder attr_Neckline_D_5 Neckline 5
7 Strapless attr_Neckline_D_6 Neckline 5
8 Turtle attr_Neckline_D_7 Neckline 5
9 Boat attr_Neckline_D_8 Neckline 5
10 Halter attr_Neckline_D_9 Neckline 5
11 Spaghetti Strap attr_Neckline_D_10 Neckline 5
12 Sweetheart attr_Neckline_D_11 Neckline 5
13 U attr_Neckline_D_12 Neckline 5
14 choker attr_Neckline_D_13 Neckline 5
15 cowl attr_Neckline_D_14 Neckline 5
16 keyhole attr_Neckline_D_15 Neckline 5
17 split attr_Neckline_D_16 Neckline 5

View File

@@ -0,0 +1,11 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Peterpan-Bertha attr_Collar_D_1 Collar 6
3 Shirt attr_Collar_D_2 Collar 6
4 Rib attr_Collar_D_3 Collar 6
5 Turtle attr_Collar_D_4 Collar 6
6 Lapel attr_Collar_D_5 Collar 6
7 Hoodie attr_Collar_D_6 Collar 6
8 Mandarin attr_Collar_D_7 Collar 6
9 Tie attr_Collar_D_8 Collar 6
10 Ruffle attr_Collar_D_9 Collar 6
11 Cowl attr_Collar_D_10 Collar 6

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 abstract attr_Print_D_1 Print 7
3 allover attr_Print_D_2 Print 7
4 animal printed attr_Print_D_3 Print 7
5 Camouflage attr_Print_D_4 Print 7
6 checks attr_Print_D_5 Print 7
7 color_block attr_Print_D_6 Print 7
8 disty print attr_Print_D_7 Print 7
9 dotted attr_Print_D_8 Print 7
10 floral attr_Print_D_9 Print 7
11 graphic print attr_Print_D_10 Print 7
12 logo and slogan print attr_Print_D_11 Print 7
13 patchwork attr_Print_D_12 Print 7
14 plain attr_Print_D_13 Print 7
15 plain_dnim attr_Print_D_14 Print 7
16 stripe attr_Print_D_15 Print 7

View File

@@ -0,0 +1,28 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 canvas attr_Material_D_1 Material 8
3 chambray attr_Material_D_2 Material 8
4 chenille attr_Material_D_3 Material 8
5 chiffon attr_Material_D_4 Material 8
6 corduroy attr_Material_D_5 Material 8
7 crepe attr_Material_D_6 Material 8
8 denim attr_Material_D_7 Material 8
9 faux_fur attr_Material_D_8 Material 8
10 faux_leather attr_Material_D_9 Material 8
11 flannel attr_Material_D_10 Material 8
12 fleece attr_Material_D_11 Material 8
13 gingham attr_Material_D_12 Material 8
14 jersey attr_Material_D_13 Material 8
15 knit attr_Material_D_14 Material 8
16 lace attr_Material_D_15 Material 8
17 lawn attr_Material_D_16 Material 8
18 neoprene attr_Material_D_17 Material 8
19 organza attr_Material_D_18 Material 8
20 plush attr_Material_D_19 Material 8
21 satin attr_Material_D_20 Material 8
22 serge attr_Material_D_21 Material 8
23 taffeta attr_Material_D_22 Material 8
24 tulle attr_Material_D_23 Material 8
25 tweed attr_Material_D_24 Material 8
26 twill attr_Material_D_25 Material 8
27 velvet attr_Material_D_26 Material 8
28 vinyl attr_Material_D_27 Material 8

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Soft,attr_Softness_D_1,Softness,9
Medium,attr_Softness_D_2,Softness,9
Hard,attr_Softness_D_3,Softness,9
1 labelName join_attr taskName taskId
2 Soft attr_Softness_D_1 Softness 9
3 Medium attr_Softness_D_2 Softness 9
4 Hard attr_Softness_D_3 Softness 9

View File

@@ -0,0 +1 @@
,shumin,shumin,20.02.2023 16:48,file:///home/shumin/.config/libreoffice/4;

View File

@@ -0,0 +1 @@
,shumin,shumin,20.02.2023 16:40,file:///home/shumin/.config/libreoffice/4;

View File

@@ -0,0 +1,17 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_J_1 Design 9
3 Tassel attr_Design_J_2 Design 9
4 Ruffle attr_Design_J_3 Design 9
5 Pleated attr_Design_J_4 Design 9
6 Wrap attr_Design_J_5 Design 9
7 Cut out attr_Design_J_6 Design 9
8 Tied attr_Design_J_7 Design 9
9 Drapes attr_Design_J_8 Design 9
10 Ribbon attr_Design_J_9 Design 9
11 Button attr_Design_J_10 Design 9
12 Cami attr_Design_J_11 Design 9
13 Gathering attr_Design_J_12 Design 9
14 Pocket attr_Design_J_13 Design 9
15 Dungaree attr_Design_J_14 Design 9
16 Layering attr_Design_J_15 Design 9
17 Belted attr_Design_J_16 Design 9

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Button attr_OPType_J_1 Opening_Type 11
3 Zipper attr_OPType_J_2 Opening_Type 11
4 Thread attr_OPType_J_3 Opening_Type 11
5 Hook attr_OPType_J_4 Opening_Type 11

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
Peg leg,attr_Jumpsuit_subtype_1,Subtype,12
Straight leg,attr_Jumpsuit_subtype_2,Subtype,12
Wide leg,attr_Jumpsuit_subtype_3,Subtype,12
Boot-cut flare,attr_Jumpsuit_subtype_4,Subtype,12
Slim fit,attr_Jumpsuit_subtype_5,Subtype,12
1 labelName join_attr taskName taskId
2 Peg leg attr_Jumpsuit_subtype_1 Subtype 12
3 Straight leg attr_Jumpsuit_subtype_2 Subtype 12
4 Wide leg attr_Jumpsuit_subtype_3 Subtype 12
5 Boot-cut flare attr_Jumpsuit_subtype_4 Subtype 12
6 Slim fit attr_Jumpsuit_subtype_5 Subtype 12

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
Short,attr_Jumpsuit_length_1,Length,1
Middle,attr_Jumpsuit_length_2,Length,1
Seven,attr_Jumpsuit_length_3,Length,1
Nine,attr_Jumpsuit_length_4,Length,1
Long,attr_Jumpsuit_length_5,Length,1
1 labelName join_attr taskName taskId
2 Short attr_Jumpsuit_length_1 Length 1
3 Middle attr_Jumpsuit_length_2 Length 1
4 Seven attr_Jumpsuit_length_3 Length 1
5 Nine attr_Jumpsuit_length_4 Length 1
6 Long attr_Jumpsuit_length_5 Length 1

View File

@@ -0,0 +1,6 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Sleeveless attr_Sleeve_length_J_1 Sleeve_Length 2
3 Short attr_Sleeve_length_J_2 Sleeve_Length 2
4 Middle attr_Sleeve_length_J_3 Sleeve_Length 2
5 Seven attr_Sleeve_length_J_4 Sleeve_Length 2
6 Long attr_Sleeve_length_J_5 Sleeve_Length 2

View File

@@ -0,0 +1,9 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shape_J_1 Sleeve_Shape 3
3 Slim attr_Sleeve_shape_J_2 Sleeve_Shape 3
4 Puff attr_Sleeve_shape_J_3 Sleeve_Shape 3
5 Bell attr_Sleeve_shape_J_4 Sleeve_Shape 3
6 Batwing attr_Sleeve_shape_J_5 Sleeve_Shape 3
7 Shirt attr_Sleeve_shape_J_6 Sleeve_Shape 3
8 Rib attr_Sleeve_shape_J_7 Sleeve_Shape 3
9 Raglan attr_Sleeve_shape_J_8 Sleeve_Shape 3

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shoulder_J_1 Sleeve_Shoulder 4
3 Cold attr_Sleeve_shoulder_J_2 Sleeve_Shoulder 4
4 Tucked attr_Sleeve_shoulder_J_3 Sleeve_Shoulder 4
5 Balmain attr_Sleeve_shoulder_J_4 Sleeve_Shoulder 4

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Round attr_Neckline_1 Neckline 6
3 V attr_Neckline_2 Neckline 6
4 Square attr_Neckline_3 Neckline 6
5 One-shoulder attr_Neckline_4 Neckline 6
6 Off-shoulder attr_Neckline_5 Neckline 6
7 Strapless attr_Neckline_6 Neckline 6

View File

@@ -0,0 +1,11 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Peterpan attr_Collar_J_1 Collar 6
3 Shirt attr_Collar_J_2 Collar 6
4 Rib attr_Collar_J_3 Collar 6
5 Turtle attr_Collar_J_4 Collar 6
6 Lapel attr_Collar_J_5 Collar 6
7 Hoodie attr_Collar_J_6 Collar 6
8 Mandarin attr_Collar_J_7 Collar 6
9 Tie attr_Collar_J_8 Collar 6
10 Ruffle attr_Collar_J_9 Collar 6
11 Cowl attr_Collar_J_10 Collar 6

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Abstract attr_Print_J_1 Print 7
3 Allover attr_Print_J_2 Print 7
4 Animal attr_Print_J_3 Print 7
5 Camouflage attr_Print_J_4 Print 7
6 Checks attr_Print_J_5 Print 7
7 Color_block attr_Print_J_6 Print 7
8 Disty Print attr_Print_J_7 Print 7
9 Dotted attr_Print_J_8 Print 7
10 Floral attr_Print_J_9 Print 7
11 Graphic Print attr_Print_J_10 Print 7
12 Logo and slogan attr_Print_J_11 Print 7
13 Patchwork attr_Print_J_12 Print 7
14 Plain attr_Print_J_13 Print 7
15 Plain_dnim attr_Print_J_14 Print 7
16 Stripe attr_Print_J_15 Print 7

View File

@@ -0,0 +1,28 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Canvas attr_Material_J_1 Material 8
3 Chambray attr_Material_J_2 Material 8
4 Chenille attr_Material_J_3 Material 8
5 Chiffon attr_Material_J_4 Material 8
6 Corduroy attr_Material_J_5 Material 8
7 Crepe attr_Material_J_6 Material 8
8 Denim attr_Material_J_7 Material 8
9 Faux_fur attr_Material_J_8 Material 8
10 Faux_leather attr_Material_J_9 Material 8
11 Flannel attr_Material_J_10 Material 8
12 Fleece attr_Material_J_11 Material 8
13 Gingham attr_Material_J_12 Material 8
14 Jersey attr_Material_J_13 Material 8
15 Knit attr_Material_J_14 Material 8
16 Lace attr_Material_J_15 Material 8
17 Lawn attr_Material_J_16 Material 8
18 Neoprene attr_Material_J_17 Material 8
19 Organza attr_Material_J_18 Material 8
20 Plush attr_Material_J_19 Material 8
21 Satin attr_Material_J_20 Material 8
22 Serge attr_Material_J_21 Material 8
23 Taffeta attr_Material_J_22 Material 8
24 Tulle attr_Material_J_23 Material 8
25 Tweed attr_Material_J_24 Material 8
26 Twill attr_Material_J_25 Material 8
27 Velvet attr_Material_J_26 Material 8
28 Vinyl attr_Material_J_27 Material 8

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Soft,attr_Softness_J_1,Softness,9
Medium,attr_Softness_J_2,Softness,9
Hard,attr_Softness_J_3,Softness,9
1 labelName join_attr taskName taskId
2 Soft attr_Softness_J_1 Softness 9
3 Medium attr_Softness_J_2 Softness 9
4 Hard attr_Softness_J_3 Softness 9

View File

@@ -0,0 +1,19 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_O_1 Design 10
3 Tiered attr_Design_O_2 Design 10
4 Tassel attr_Design_O_3 Design 10
5 Ruffles attr_Design_O_4 Design 10
6 Pleated attr_Design_O_5 Design 10
7 Wrap attr_Design_O_6 Design 10
8 Ripped attr_Design_O_7 Design 10
9 Cut out attr_Design_O_8 Design 10
10 Eyelet attr_Design_O_9 Design 10
11 Folded attr_Design_O_10 Design 10
12 Tied attr_Design_O_11 Design 10
13 Drapes attr_Design_O_12 Design 10
14 Ribbon attr_Design_O_13 Design 10
15 Button attr_Design_O_14 Design 10
16 Crossed-over zipper attr_Design_O_15 Design 10
17 Crossed-over button attr_Design_O_16 Design 10
18 Single breasted attr_Design_O_17 Design 10
19 Double breasted attr_Design_O_18 Design 10

View File

@@ -0,0 +1,3 @@
labelName,join_attr,taskName,taskId
Full,attr_Opening_O_1,Opening_Type,11
Half,attr_Opening_O_2,Opening_Type,11
1 labelName join_attr taskName taskId
2 Full attr_Opening_O_1 Opening_Type 11
3 Half attr_Opening_O_2 Opening_Type 11

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Button attr_OPType_O_1 Opening_Type 12
3 Zipper attr_OPType_O_2 Opening_Type 12
4 Thread attr_OPType_O_3 Opening_Type 12
5 Hook attr_OPType_O_4 Opening_Type 12

View File

@@ -0,0 +1,7 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 A Line attr_Silhouette_O_1 Silhouette 13
3 H Shape attr_Silhouette_O_2 Silhouette 13
4 Slim attr_Silhouette_O_3 Silhouette 13
5 Flyman attr_Silhouette_O_4 Silhouette 13
6 Peplum attr_Silhouette_O_5 Silhouette 13
7 Oversize attr_Silhouette_O_6 Silhouette 13

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Short,attr_Outer_length_1,Length,1
Regular,attr_Outer_length_2,Length,1
Long,attr_Outer_length_3,Length,1
1 labelName join_attr taskName taskId
2 Short attr_Outer_length_1 Length 1
3 Regular attr_Outer_length_2 Length 1
4 Long attr_Outer_length_3 Length 1

View File

@@ -0,0 +1,18 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Coat attr_Outer_type_1 Type 2
3 Trench attr_Outer_type_2 Type 2
4 Baseball jacket attr_Outer_type_3 Type 2
5 Hoodie jacket attr_Outer_type_4 Type 2
6 Active jacket attr_Outer_type_5 Type 2
7 Jacket attr_Outer_type_6 Type 2
8 Blazer attr_Outer_type_7 Type 2
9 Cardigan attr_Outer_type_8 Type 2
10 Capes attr_Outer_type_9 Type 2
11 Fleeces Jacket attr_Outer_type_10 Type 2
12 Gilets/Puffer attr_Outer_type_11 Type 2
13 Aviator jacket attr_Outer_type_12 Type 2
14 Biker jacket attr_Outer_type_13 Type 2
15 Pea coat attr_Outer_type_14 Type 2
16 Shacket attr_Outer_type_15 Type 2
17 Denim jacket attr_Outer_type_16 Type 2
18 Raincoat attr_Outer_type_17 Type 2

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Sleeveless attr_sleeve_length_1 Sleeve_Length 3
3 Short attr_sleeve_length_2 Sleeve_Length 3
4 Middle attr_sleeve_length_3 Sleeve_Length 3
5 Seven attr_sleeve_length_4 Sleeve_Length 3
6 Long attr_sleeve_length_5 Sleeve_Length 3

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Regular attr_sleeve_shape_O_1 Sleeve_Shape 4
3 Slim attr_sleeve_shape_O_2 Sleeve_Shape 4
4 Puff attr_sleeve_shape_O_3 Sleeve_Shape 4
5 Bell attr_sleeve_shape_O_4 Sleeve_Shape 4
6 Batwing attr_sleeve_shape_O_5 Sleeve_Shape 4
7 Shirt attr_sleeve_shape_O_6 Sleeve_Shape 4
8 Rib attr_sleeve_shape_O_7 Sleeve_Shape 4
9 Raglan attr_sleeve_shape_O_8 Sleeve_Shape 4

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Regular attr_sleeve_shoulder_O_1 Sleeve_Shoulder 5
3 Cold attr_sleeve_shoulder_O_2 Sleeve_Shoulder 5
4 Tucked attr_sleeve_shoulder_O_3 Sleeve_Shoulder 5
5 Balmain attr_sleeve_shoulder_O_4 Sleeve_Shoulder 5
6 Drop Shoulder attr_sleeve_shoulder_O_5 Sleeve_Shoulder 5

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Peterpan attr_Callar_O_1 Collar 6
3 Shirt attr_Callar_O_2 Collar 6
4 Rib attr_Callar_O_3 Collar 6
5 Turtle attr_Callar_O_4 Collar 6
6 Lapel attr_Callar_O_5 Collar 6
7 Hoodie attr_Callar_O_6 Collar 6
8 Mandarin attr_Callar_O_7 Collar 6
9 Ruffle attr_Callar_O_8 Collar 6
10 Jewel attr_Callar_O_9 Collar 6

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Abstract attr_Print_O_1 Print 7
3 Allover attr_Print_O_2 Print 7
4 Animal attr_Print_O_3 Print 7
5 Camouflage attr_Print_O_4 Print 7
6 Checks attr_Print_O_5 Print 7
7 Color_block attr_Print_O_6 Print 7
8 Disty print attr_Print_O_7 Print 7
9 Dotted attr_Print_O_8 Print 7
10 Floral attr_Print_O_9 Print 7
11 Graphic print attr_Print_O_10 Print 7
12 Logo and slogan attr_Print_O_11 Print 7
13 Patchwork attr_Print_O_12 Print 7
14 Plain attr_Print_O_13 Print 7
15 Plain_dnim attr_Print_O_14 Print 7
16 Stripe attr_Print_O_15 Print 7

View File

@@ -0,0 +1,28 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Canvas attr_Material_O_1 Material 8
3 Chambray attr_Material_O_2 Material 8
4 Chenille attr_Material_O_3 Material 8
5 Chiffon attr_Material_O_4 Material 8
6 Corduroy attr_Material_O_5 Material 8
7 Crepe attr_Material_O_6 Material 8
8 Denim attr_Material_O_7 Material 8
9 Faux_fur attr_Material_O_8 Material 8
10 Faux_leather attr_Material_O_9 Material 8
11 Flannel attr_Material_O_10 Material 8
12 Fleece attr_Material_O_11 Material 8
13 Gingham attr_Material_O_12 Material 8
14 Jersey attr_Material_O_13 Material 8
15 Knit attr_Material_O_14 Material 8
16 Lace attr_Material_O_15 Material 8
17 Lawn attr_Material_O_16 Material 8
18 Neoprene attr_Material_O_17 Material 8
19 Organza attr_Material_O_18 Material 8
20 Plush attr_Material_O_19 Material 8
21 Satin attr_Material_O_20 Material 8
22 Serge attr_Material_O_21 Material 8
23 Taffeta attr_Material_O_22 Material 8
24 Tulle attr_Material_O_23 Material 8
25 Tweed attr_Material_O_24 Material 8
26 Twill attr_Material_O_25 Material 8
27 Velvet attr_Material_O_26 Material 8
28 Vinyl attr_Material_O_27 Material 8

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Soft,attr_Softness_O_1,Softness,9
Medium,attr_Softness_O_2,Softness,9
Hard,attr_Softness_O_3,Softness,9
1 labelName join_attr taskName taskId
2 Soft attr_Softness_O_1 Softness 9
3 Medium attr_Softness_O_2 Softness 9
4 Hard attr_Softness_O_3 Softness 9

View File

@@ -0,0 +1,15 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Asymmetrical attr_Design_U_1 Design 10
3 Tiered attr_Design_U_2 Design 10
4 Tassel attr_Design_U_3 Design 10
5 Ruffle attr_Design_U_4 Design 10
6 Pleated attr_Design_U_5 Design 10
7 Wrap attr_Design_U_6 Design 10
8 Ripped attr_Design_U_7 Design 10
9 Cut out attr_Design_U_8 Design 10
10 Eyelet attr_Design_U_9 Design 10
11 Folded attr_Design_U_10 Design 10
12 Tied attr_Design_U_11 Design 10
13 Drapes attr_Design_U_12 Design 10
14 Ribbon attr_Design_U_13 Design 10
15 Button attr_Design_U_14 Design 10

View File

@@ -0,0 +1,5 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Button attr_OPType_U_1 Opening_Type 11
3 Zipper attr_OPType_U_2 Opening_Type 11
4 Thread attr_OPType_U_3 Opening_Type 11
5 Hook attr_OPType_U_4 Opening_Type 11

View File

@@ -0,0 +1,7 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 A Line attr_Silhouette_U_1 Silhouette 12
3 H Shape attr_Silhouette_U_2 Silhouette 12
4 Slim attr_Silhouette_U_3 Silhouette 12
5 Flyman attr_Silhouette_U_4 Silhouette 12
6 Peplum attr_Silhouette_U_5 Silhouette 12
7 Oversize attr_Silhouette_U_6 Silhouette 12

View File

@@ -0,0 +1,4 @@
labelName,join_attr,taskName,taskId
Short,attr_Top_length_1,Length,1
Regular,attr_Top_length_2,Length,1
Long,attr_Top_length_3,Length,1
1 labelName join_attr taskName taskId
2 Short attr_Top_length_1 Length 1
3 Regular attr_Top_length_2 Length 1
4 Long attr_Top_length_3 Length 1

View File

@@ -0,0 +1,15 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Bandeau attr_toptype_1 Type 2
3 Blouse attr_toptype_2 Type 2
4 Bodysuit attr_toptype_3 Type 2
5 Bralets attr_toptype_4 Type 2
6 Camisole attr_toptype_5 Type 2
7 Crop Top attr_toptype_6 Type 2
8 Hoodie attr_toptype_7 Type 2
9 Pullover attr_toptype_8 Type 2
10 Polo shirt attr_toptype_9 Type 2
11 Shirt attr_toptype_10 Type 2
12 strapeless attr_toptype_11 Type 2
13 Sweater attr_toptype_12 Type 2
14 Tank Top attr_toptype_13 Type 2
15 T-shirt attr_toptype_14 Type 2

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Sleeveless attr_Sleeve_length_1 Sleeve_Length 3
3 Short attr_Sleeve_length_2 Sleeve_Length 3
4 Middle attr_Sleeve_length_3 Sleeve_Length 3
5 Seven attr_Sleeve_length_4 Sleeve_Length 3
6 Long attr_Sleeve_length_5 Sleeve_Length 3

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shape_1 Sleeve_Shape 4
3 Slim attr_Sleeve_shape_2 Sleeve_Shape 4
4 Puff attr_Sleeve_shape_3 Sleeve_Shape 4
5 Bell attr_Sleeve_shape_4 Sleeve_Shape 4
6 Batwing attr_Sleeve_shape_5 Sleeve_Shape 4
7 Shirt attr_Sleeve_shape_6 Sleeve_Shape 4
8 Rib attr_Sleeve_shape_7 Sleeve_Shape 4
9 Raglan attr_Sleeve_shape_8 Sleeve_Shape 4

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Regular attr_Sleeve_shoulder_1 Sleeve_Shoulder 5
3 Cold attr_Sleeve_shoulder_2 Sleeve_Shoulder 5
4 Tucked attr_Sleeve_shoulder_3 Sleeve_Shoulder 5
5 Balmain attr_Sleeve_shoulder_4 Sleeve_Shoulder 5

View File

@@ -0,0 +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
1 labelName join_attr taskName taskId
2 Round attr_Neckline_1 Neckline 6
3 V attr_Neckline_2 Neckline 6
4 Square attr_Neckline_3 Neckline 6
5 One-shoulder attr_Neckline_4 Neckline 6
6 Off-shoulder attr_Neckline_5 Neckline 6
7 Strapless attr_Neckline_6 Neckline 6

View File

@@ -0,0 +1,16 @@
labelName,join_attr,taskName,taskId
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 labelName join_attr taskName taskId
2 Abstract attr_Print_O_1 Print 7
3 Allover attr_Print_O_2 Print 7
4 Animal attr_Print_O_3 Print 7
5 Camouflage attr_Print_O_4 Print 7
6 Checks attr_Print_O_5 Print 7
7 Color_block attr_Print_O_6 Print 7
8 Disty print attr_Print_O_7 Print 7
9 Dotted attr_Print_O_8 Print 7
10 Floral attr_Print_O_9 Print 7
11 Graphic print attr_Print_O_10 Print 7
12 Logo and slogan attr_Print_O_11 Print 7
13 Patchwork attr_Print_O_12 Print 7
14 Plain attr_Print_O_13 Print 7
15 Plain_dnim attr_Print_O_14 Print 7
16 Stripe attr_Print_O_15 Print 7

Some files were not shown because too many files have changed in this diff Show More