feat: 자재 분류 시스템 대폭 개선
🔧 주요 개선사항: - EXCLUDE 분류기 추가 (WELD GAP 등 제외 대상 처리) - FITTING 분류기 키워드 확장 (ELL, RED 추가) - PIPE 재질 중복 문제 해결 (material_grade 파싱 개선) - NIPPLE 특별 처리 추가 (스케줄 + 길이 정보 포함) - OLET 타입 중복 표시 제거 📊 분류 정확도: - UNKNOWN: 0개 (100% 분류 성공) - EXCLUDE: 1,014개 (제외 대상) - 실제 자재: 1,823개 정확 분류 🎯 해결된 문제: - PIPE 재질 'ASTM A106 ASTM A106' → 'ASTM A106 GR B' - WELD GAP 오분류 → EXCLUDE 카테고리 - FITTING 키워드 인식 실패 → ELL, RED 키워드 추가 - 프론트엔드 중복 표시 제거
This commit is contained in:
@@ -236,656 +236,9 @@ async def root():
|
||||
# print(f"Jobs 조회 에러: {str(e)}")
|
||||
# return {"error": f"Jobs 조회 실패: {str(e)}"}
|
||||
|
||||
# 파일 업로드 API
|
||||
@app.post("/upload")
|
||||
async def upload_file(
|
||||
file: UploadFile = File(...),
|
||||
job_no: str = Form(...), # project_id 대신 job_no 사용
|
||||
bom_name: str = Form(""), # BOM 이름 추가
|
||||
bom_type: str = Form(""),
|
||||
revision: str = Form("Rev.0"),
|
||||
parent_bom_id: Optional[int] = Form(None),
|
||||
description: str = Form(""),
|
||||
db: Session = Depends(get_db)
|
||||
):
|
||||
"""파일 업로드 및 자재 분류 (자동 리비전 관리)"""
|
||||
try:
|
||||
print("=== main.py 업로드 API 호출됨 ===")
|
||||
print(f"파일명: {file.filename}")
|
||||
print(f"job_no: {job_no}")
|
||||
print(f"bom_name: {bom_name}")
|
||||
print(f"bom_type: {bom_type}")
|
||||
|
||||
# job_no로 job 확인
|
||||
job_query = text("SELECT job_no FROM jobs WHERE job_no = :job_no AND is_active = true")
|
||||
job_result = db.execute(job_query, {"job_no": job_no})
|
||||
job = job_result.fetchone()
|
||||
|
||||
if not job:
|
||||
return {"error": f"Job No. '{job_no}'에 해당하는 작업을 찾을 수 없습니다."}
|
||||
|
||||
# 업로드 디렉토리 생성
|
||||
upload_dir = "uploads"
|
||||
os.makedirs(upload_dir, exist_ok=True)
|
||||
|
||||
# 파일 저장
|
||||
if file.filename:
|
||||
file_path = os.path.join(upload_dir, file.filename)
|
||||
print(f"파일 저장 경로: {file_path}")
|
||||
print(f"원본 파일명: {file.filename}")
|
||||
with open(file_path, "wb") as buffer:
|
||||
shutil.copyfileobj(file.file, buffer)
|
||||
print(f"파일 저장 완료: {file_path}")
|
||||
else:
|
||||
return {"error": "파일명이 없습니다."}
|
||||
|
||||
# 파일 크기 계산
|
||||
file_size = os.path.getsize(file_path)
|
||||
|
||||
# 파일 타입 결정
|
||||
file_type = "excel" if file.filename.endswith(('.xls', '.xlsx')) else "csv" if file.filename.endswith('.csv') else "unknown"
|
||||
|
||||
# BOM 종류별 자동 리비전 관리
|
||||
if bom_name and not parent_bom_id:
|
||||
# 같은 job_no의 같은 BOM 이름에 대한 최신 리비전 조회
|
||||
latest_revision_query = text("""
|
||||
SELECT revision FROM files
|
||||
WHERE job_no = :job_no AND bom_name = :bom_name
|
||||
ORDER BY revision DESC LIMIT 1
|
||||
""")
|
||||
|
||||
result = db.execute(latest_revision_query, {
|
||||
"job_no": job_no,
|
||||
"bom_name": bom_name
|
||||
})
|
||||
|
||||
latest_file = result.fetchone()
|
||||
if latest_file:
|
||||
# 기존 리비전이 있으면 다음 리비전 번호 생성
|
||||
current_rev = latest_file.revision
|
||||
if current_rev.startswith("Rev."):
|
||||
try:
|
||||
rev_num = int(current_rev.replace("Rev.", ""))
|
||||
revision = f"Rev.{rev_num + 1}"
|
||||
except ValueError:
|
||||
revision = "Rev.1"
|
||||
else:
|
||||
revision = "Rev.1"
|
||||
else:
|
||||
# 첫 번째 업로드인 경우 Rev.0
|
||||
revision = "Rev.0"
|
||||
|
||||
# 데이터베이스에 파일 정보 저장
|
||||
insert_query = text("""
|
||||
INSERT INTO files (
|
||||
job_no, filename, original_filename, file_path,
|
||||
file_size, upload_date, revision, file_type, uploaded_by, bom_name
|
||||
) VALUES (
|
||||
:job_no, :filename, :original_filename, :file_path,
|
||||
:file_size, NOW(), :revision, :file_type, :uploaded_by, :bom_name
|
||||
) RETURNING id
|
||||
""")
|
||||
|
||||
result = db.execute(insert_query, {
|
||||
"job_no": job_no,
|
||||
"filename": file.filename,
|
||||
"original_filename": file.filename,
|
||||
"file_path": file_path,
|
||||
"file_size": file_size,
|
||||
"revision": revision,
|
||||
"file_type": file_type,
|
||||
"uploaded_by": "system",
|
||||
"bom_name": bom_name
|
||||
})
|
||||
|
||||
file_id = result.fetchone()[0]
|
||||
|
||||
# 1차: 파일 파싱 (CSV/Excel 파일 읽기)
|
||||
materials_data = parse_file(file_path)
|
||||
|
||||
# 2차: 각 자재를 분류기로 분류
|
||||
classified_materials = []
|
||||
|
||||
# 리비전 업로드인 경우 기존 분류 정보 가져오기
|
||||
existing_classifications = {}
|
||||
if parent_bom_id:
|
||||
parent_materials = db.execute(
|
||||
text("SELECT original_description, classified_category, classified_subcategory, material_grade, schedule, size_spec FROM materials WHERE file_id = :file_id"),
|
||||
{"file_id": parent_bom_id}
|
||||
).fetchall()
|
||||
|
||||
for material in parent_materials:
|
||||
existing_classifications[material.original_description] = {
|
||||
"classified_category": material.classified_category,
|
||||
"classified_subcategory": material.classified_subcategory,
|
||||
"material_grade": material.material_grade,
|
||||
"schedule": material.schedule,
|
||||
"size_spec": material.size_spec
|
||||
}
|
||||
|
||||
for material in materials_data:
|
||||
# 리비전 업로드인 경우 기존 분류 사용, 아니면 새로 분류
|
||||
if parent_bom_id and material.get("original_description") in existing_classifications:
|
||||
existing_class = existing_classifications[material.get("original_description")]
|
||||
classified_material = {
|
||||
**material,
|
||||
**existing_class,
|
||||
"classification_confidence": 1.0 # 기존 분류이므로 높은 신뢰도
|
||||
}
|
||||
else:
|
||||
classified_material = classify_material_item(material)
|
||||
classified_materials.append(classified_material)
|
||||
|
||||
# 3차: 분류된 자재를 데이터베이스에 저장
|
||||
for material in classified_materials:
|
||||
insert_material_query = text("""
|
||||
INSERT INTO materials (
|
||||
file_id, line_number, original_description,
|
||||
classified_category, classified_subcategory,
|
||||
material_grade, schedule, size_spec,
|
||||
quantity, unit, drawing_name, area_code, line_no,
|
||||
classification_confidence, is_verified, created_at
|
||||
) VALUES (
|
||||
:file_id, :line_number, :original_description,
|
||||
:classified_category, :classified_subcategory,
|
||||
:material_grade, :schedule, :size_spec,
|
||||
:quantity, :unit, :drawing_name, :area_code, :line_no,
|
||||
:classification_confidence, :is_verified, NOW()
|
||||
)
|
||||
RETURNING id
|
||||
""")
|
||||
|
||||
result = db.execute(insert_material_query, {
|
||||
"file_id": file_id,
|
||||
"line_number": material.get("line_number", 0),
|
||||
"original_description": material.get("original_description", ""),
|
||||
"classified_category": material.get("classified_category", ""),
|
||||
"classified_subcategory": material.get("classified_subcategory", ""),
|
||||
"material_grade": material.get("material_grade", ""),
|
||||
"schedule": material.get("schedule", ""),
|
||||
"size_spec": material.get("size_spec", ""),
|
||||
"quantity": material.get("quantity", 0),
|
||||
"unit": material.get("unit", ""),
|
||||
"drawing_name": material.get("drawing_name", ""),
|
||||
"area_code": material.get("area_code", ""),
|
||||
"line_no": material.get("line_no", ""),
|
||||
"classification_confidence": material.get("classification_confidence", 0.0),
|
||||
"is_verified": False
|
||||
})
|
||||
|
||||
# 저장된 material의 ID 가져오기
|
||||
material_id = result.fetchone()[0]
|
||||
|
||||
# 카테고리별 상세 정보 저장
|
||||
category = material.get("classified_category", "")
|
||||
|
||||
if category == "PIPE" and "pipe_details" in material:
|
||||
pipe_details = material["pipe_details"]
|
||||
pipe_insert_query = text("""
|
||||
INSERT INTO pipe_details (
|
||||
material_id, file_id, nominal_size, schedule,
|
||||
material_standard, material_grade, material_type,
|
||||
manufacturing_method, length_mm
|
||||
) VALUES (
|
||||
:material_id, :file_id, :nominal_size, :schedule,
|
||||
:material_standard, :material_grade, :material_type,
|
||||
:manufacturing_method, :length_mm
|
||||
)
|
||||
""")
|
||||
db.execute(pipe_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"nominal_size": material.get("size_spec", ""),
|
||||
"schedule": pipe_details.get("schedule", material.get("schedule", "")),
|
||||
"material_standard": pipe_details.get("material_spec", material.get("material_grade", "")),
|
||||
"material_grade": material.get("material_grade", ""),
|
||||
"material_type": material.get("material_grade", "").split("-")[0] if material.get("material_grade", "") else "",
|
||||
"manufacturing_method": pipe_details.get("manufacturing_method", ""),
|
||||
"length_mm": material.get("length", 0.0) if material.get("length", 0.0) else 0.0 # 이미 mm 단위임
|
||||
})
|
||||
|
||||
elif category == "FITTING" and "fitting_details" in material:
|
||||
fitting_details = material["fitting_details"]
|
||||
fitting_insert_query = text("""
|
||||
INSERT INTO fitting_details (
|
||||
material_id, file_id, fitting_type, fitting_subtype,
|
||||
connection_method, pressure_rating, material_standard,
|
||||
material_grade, main_size, reduced_size
|
||||
) VALUES (
|
||||
:material_id, :file_id, :fitting_type, :fitting_subtype,
|
||||
:connection_method, :pressure_rating, :material_standard,
|
||||
:material_grade, :main_size, :reduced_size
|
||||
)
|
||||
""")
|
||||
db.execute(fitting_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"fitting_type": fitting_details.get("fitting_type", ""),
|
||||
"fitting_subtype": fitting_details.get("fitting_subtype", ""),
|
||||
"connection_method": fitting_details.get("connection_method", ""),
|
||||
"pressure_rating": fitting_details.get("pressure_rating", ""),
|
||||
"material_standard": fitting_details.get("material_standard", material.get("material_grade", "")),
|
||||
"material_grade": fitting_details.get("material_grade", material.get("material_grade", "")),
|
||||
"main_size": material.get("size_spec", ""),
|
||||
"reduced_size": fitting_details.get("reduced_size", "")
|
||||
})
|
||||
|
||||
elif category == "VALVE" and "valve_details" in material:
|
||||
valve_details = material["valve_details"]
|
||||
valve_insert_query = text("""
|
||||
INSERT INTO valve_details (
|
||||
material_id, file_id, valve_type, valve_subtype,
|
||||
actuator_type, connection_method, pressure_rating,
|
||||
body_material, size_inches
|
||||
) VALUES (
|
||||
:material_id, :file_id, :valve_type, :valve_subtype,
|
||||
:actuator_type, :connection_method, :pressure_rating,
|
||||
:body_material, :size_inches
|
||||
)
|
||||
""")
|
||||
db.execute(valve_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"valve_type": valve_details.get("valve_type", ""),
|
||||
"valve_subtype": valve_details.get("valve_subtype", ""),
|
||||
"actuator_type": valve_details.get("actuator_type", "MANUAL"),
|
||||
"connection_method": valve_details.get("connection_method", ""),
|
||||
"pressure_rating": valve_details.get("pressure_rating", ""),
|
||||
"body_material": material.get("material_grade", ""),
|
||||
"size_inches": material.get("size_spec", "")
|
||||
})
|
||||
|
||||
elif category == "FLANGE" and "flange_details" in material:
|
||||
flange_details = material["flange_details"]
|
||||
flange_insert_query = text("""
|
||||
INSERT INTO flange_details (
|
||||
material_id, file_id, flange_type, flange_subtype,
|
||||
facing_type, pressure_rating, material_standard,
|
||||
material_grade, size_inches
|
||||
) VALUES (
|
||||
:material_id, :file_id, :flange_type, :flange_subtype,
|
||||
:facing_type, :pressure_rating, :material_standard,
|
||||
:material_grade, :size_inches
|
||||
)
|
||||
""")
|
||||
db.execute(flange_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"flange_type": flange_details.get("flange_type", ""),
|
||||
"flange_subtype": flange_details.get("flange_subtype", ""),
|
||||
"facing_type": flange_details.get("facing_type", ""),
|
||||
"pressure_rating": flange_details.get("pressure_rating", ""),
|
||||
"material_standard": material.get("material_grade", ""),
|
||||
"material_grade": material.get("material_grade", ""),
|
||||
"size_inches": material.get("size_spec", "")
|
||||
})
|
||||
|
||||
elif category == "BOLT" and "bolt_details" in material:
|
||||
bolt_details = material["bolt_details"]
|
||||
bolt_insert_query = text("""
|
||||
INSERT INTO bolt_details (
|
||||
material_id, file_id, bolt_type, bolt_subtype,
|
||||
thread_standard, diameter, length, thread_pitch,
|
||||
material_standard, material_grade, coating
|
||||
) VALUES (
|
||||
:material_id, :file_id, :bolt_type, :bolt_subtype,
|
||||
:thread_standard, :diameter, :length, :thread_pitch,
|
||||
:material_standard, :material_grade, :coating
|
||||
)
|
||||
""")
|
||||
db.execute(bolt_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"bolt_type": bolt_details.get("bolt_type", ""),
|
||||
"bolt_subtype": bolt_details.get("bolt_subtype", ""),
|
||||
"thread_standard": bolt_details.get("thread_standard", ""),
|
||||
"diameter": material.get("size_spec", ""),
|
||||
"length": bolt_details.get("length", ""),
|
||||
"thread_pitch": bolt_details.get("thread_pitch", ""),
|
||||
"material_standard": material.get("material_grade", ""),
|
||||
"material_grade": material.get("material_grade", ""),
|
||||
"coating": bolt_details.get("coating", "")
|
||||
})
|
||||
|
||||
elif category == "GASKET" and "gasket_details" in material:
|
||||
gasket_details = material["gasket_details"]
|
||||
gasket_insert_query = text("""
|
||||
INSERT INTO gasket_details (
|
||||
material_id, file_id, gasket_type, gasket_material,
|
||||
flange_size, pressure_rating, temperature_range,
|
||||
thickness, inner_diameter, outer_diameter
|
||||
) VALUES (
|
||||
:material_id, :file_id, :gasket_type, :gasket_material,
|
||||
:flange_size, :pressure_rating, :temperature_range,
|
||||
:thickness, :inner_diameter, :outer_diameter
|
||||
)
|
||||
""")
|
||||
db.execute(gasket_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"gasket_type": gasket_details.get("gasket_type", ""),
|
||||
"gasket_material": gasket_details.get("gasket_material", ""),
|
||||
"flange_size": material.get("size_spec", ""),
|
||||
"pressure_rating": gasket_details.get("pressure_rating", ""),
|
||||
"temperature_range": gasket_details.get("temperature_range", ""),
|
||||
"thickness": gasket_details.get("thickness", ""),
|
||||
"inner_diameter": gasket_details.get("inner_diameter", ""),
|
||||
"outer_diameter": gasket_details.get("outer_diameter", "")
|
||||
})
|
||||
|
||||
elif category == "INSTRUMENT" and "instrument_details" in material:
|
||||
instrument_details = material["instrument_details"]
|
||||
instrument_insert_query = text("""
|
||||
INSERT INTO instrument_details (
|
||||
material_id, file_id, instrument_type, measurement_type,
|
||||
measurement_range, output_signal, connection_size,
|
||||
process_connection, accuracy_class
|
||||
) VALUES (
|
||||
:material_id, :file_id, :instrument_type, :measurement_type,
|
||||
:measurement_range, :output_signal, :connection_size,
|
||||
:process_connection, :accuracy_class
|
||||
)
|
||||
""")
|
||||
db.execute(instrument_insert_query, {
|
||||
"material_id": material_id,
|
||||
"file_id": file_id,
|
||||
"instrument_type": instrument_details.get("instrument_type", ""),
|
||||
"measurement_type": instrument_details.get("measurement_type", ""),
|
||||
"measurement_range": instrument_details.get("measurement_range", ""),
|
||||
"output_signal": instrument_details.get("output_signal", ""),
|
||||
"connection_size": material.get("size_spec", ""),
|
||||
"process_connection": instrument_details.get("process_connection", ""),
|
||||
"accuracy_class": instrument_details.get("accuracy_class", "")
|
||||
})
|
||||
|
||||
db.commit()
|
||||
|
||||
return {
|
||||
"success": True,
|
||||
"file_id": file_id,
|
||||
"filename": file.filename,
|
||||
"materials_count": len(classified_materials),
|
||||
"revision": revision,
|
||||
"message": f"파일이 성공적으로 업로드되고 {len(classified_materials)}개의 자재가 분류되었습니다. (리비전: {revision})"
|
||||
}
|
||||
except Exception as e:
|
||||
db.rollback()
|
||||
print(f"업로드 실패: {str(e)}")
|
||||
# HTTP 400 에러로 변경
|
||||
from fastapi import HTTPException
|
||||
raise HTTPException(status_code=400, detail=f"파일 업로드 및 분류 실패: {str(e)}")
|
||||
# 파일 업로드는 /files/upload 엔드포인트를 사용하세요 (routers/files.py)
|
||||
|
||||
def parse_file(file_path: str) -> List[Dict]:
|
||||
"""파일 파싱 (CSV/Excel)"""
|
||||
import pandas as pd
|
||||
import os
|
||||
|
||||
try:
|
||||
print(f"parse_file 호출됨: {file_path}")
|
||||
print(f"파일 존재 여부: {os.path.exists(file_path)}")
|
||||
print(f"파일 확장자: {os.path.splitext(file_path)[1]}")
|
||||
|
||||
# 파일 확장자를 소문자로 변환하여 검증
|
||||
file_extension = os.path.splitext(file_path)[1].lower()
|
||||
print(f"소문자 변환된 확장자: {file_extension}")
|
||||
|
||||
if file_extension == '.csv':
|
||||
df = pd.read_csv(file_path)
|
||||
elif file_extension in ['.xls', '.xlsx']:
|
||||
df = pd.read_excel(file_path)
|
||||
else:
|
||||
print(f"지원되지 않는 파일 형식: {file_path}")
|
||||
print(f"파일 확장자: {file_extension}")
|
||||
raise ValueError("지원하지 않는 파일 형식입니다.")
|
||||
|
||||
print(f"파일 파싱 시작: {file_path}")
|
||||
print(f"데이터프레임 형태: {df.shape}")
|
||||
print(f"컬럼명: {list(df.columns)}")
|
||||
|
||||
# 컬럼명 매핑 (대소문자 구분 없이)
|
||||
column_mapping = {
|
||||
'description': ['DESCRIPTION', 'Description', 'description', 'DESC', 'Desc', 'desc', 'ITEM', 'Item', 'item'],
|
||||
'quantity': ['QTY', 'Quantity', 'quantity', 'QTY.', 'Qty', 'qty', 'AMOUNT', 'Amount', 'amount'],
|
||||
'length': ['LENGTH', 'Length', 'length', 'LG', 'Lg', 'lg', 'LENGTH_MM', 'Length_mm', 'length_mm'],
|
||||
'unit': ['UNIT', 'Unit', 'unit', 'UOM', 'Uom', 'uom'],
|
||||
'size': ['SIZE', 'Size', 'size', 'NOM_SIZE', 'Nom_Size', 'nom_size', 'MAIN_NOM', 'Main_Nom', 'main_nom'],
|
||||
'drawing': ['DRAWING', 'Drawing', 'drawing', 'DWG', 'Dwg', 'dwg'],
|
||||
'area': ['AREA', 'Area', 'area', 'AREA_CODE', 'Area_Code', 'area_code'],
|
||||
'line': ['LINE', 'Line', 'line', 'LINE_NO', 'Line_No', 'line_no', 'PIPELINE', 'Pipeline', 'pipeline']
|
||||
}
|
||||
|
||||
# 실제 컬럼명 찾기
|
||||
found_columns = {}
|
||||
for target_col, possible_names in column_mapping.items():
|
||||
for col_name in possible_names:
|
||||
if col_name in df.columns:
|
||||
found_columns[target_col] = col_name
|
||||
break
|
||||
|
||||
print(f"찾은 컬럼 매핑: {found_columns}")
|
||||
|
||||
materials = []
|
||||
for index, row in df.iterrows():
|
||||
# 빈 행 건너뛰기
|
||||
if row.isna().all():
|
||||
continue
|
||||
|
||||
# 안전한 값 추출
|
||||
description = str(row.get(found_columns.get('description', ''), '') or '')
|
||||
quantity_raw = row.get(found_columns.get('quantity', 1), 1)
|
||||
quantity = float(quantity_raw) if quantity_raw is not None else 1.0
|
||||
length_raw = row.get(found_columns.get('length', 0), 0)
|
||||
length = float(length_raw) if length_raw is not None else 0.0
|
||||
unit = str(row.get(found_columns.get('unit', 'EA'), 'EA') or 'EA')
|
||||
size = str(row.get(found_columns.get('size', ''), '') or '')
|
||||
drawing = str(row.get(found_columns.get('drawing', ''), '') or '')
|
||||
area = str(row.get(found_columns.get('area', ''), '') or '')
|
||||
line = str(row.get(found_columns.get('line', ''), '') or '')
|
||||
|
||||
material = {
|
||||
"line_number": index + 1,
|
||||
"original_description": description,
|
||||
"quantity": quantity,
|
||||
"length": length,
|
||||
"unit": unit,
|
||||
"size_spec": size,
|
||||
"drawing_name": drawing,
|
||||
"area_code": area,
|
||||
"line_no": line
|
||||
}
|
||||
|
||||
# 빈 설명은 건너뛰기
|
||||
if not material["original_description"] or material["original_description"].strip() == '':
|
||||
continue
|
||||
|
||||
materials.append(material)
|
||||
|
||||
print(f"파싱된 자재 수: {len(materials)}")
|
||||
if materials:
|
||||
print(f"첫 번째 자재 예시: {materials[0]}")
|
||||
|
||||
return materials
|
||||
except Exception as e:
|
||||
print(f"파일 파싱 오류: {str(e)}")
|
||||
raise Exception(f"파일 파싱 실패: {str(e)}")
|
||||
|
||||
def classify_material_item(material: Dict) -> Dict:
|
||||
"""개별 자재 분류"""
|
||||
from .services import (
|
||||
pipe_classifier, fitting_classifier, bolt_classifier,
|
||||
valve_classifier, instrument_classifier, flange_classifier,
|
||||
gasket_classifier, material_classifier
|
||||
)
|
||||
|
||||
description = material.get("original_description", "")
|
||||
size_spec = material.get("size_spec", "")
|
||||
length = material.get("length", 0.0) # 길이 정보 추가
|
||||
|
||||
print(f"분류 시도: {description}")
|
||||
|
||||
# 각 분류기로 분류 시도 (개선된 순서와 기준)
|
||||
desc_upper = description.upper()
|
||||
|
||||
# 1. 명확한 키워드 우선 확인 (높은 신뢰도)
|
||||
if any(keyword in desc_upper for keyword in ['FLG', 'FLANGE', '플랜지', 'RF', 'WN', 'SO', 'BLIND']):
|
||||
classification_result = flange_classifier.classify_flange("", description, size_spec, length)
|
||||
print(f"FLANGE 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
elif any(keyword in desc_upper for keyword in ['VALVE', 'GATE', 'BALL', 'GLOBE', 'CHECK', '밸브', '게이트', '볼']):
|
||||
classification_result = valve_classifier.classify_valve("", description, size_spec, length)
|
||||
print(f"VALVE 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
elif any(keyword in desc_upper for keyword in ['ELBOW', 'ELL', 'TEE', 'REDUCER', 'CAP', 'COUPLING', '엘보', '티', '리듀서', '캡']):
|
||||
classification_result = fitting_classifier.classify_fitting("", description, size_spec, length)
|
||||
print(f"FITTING 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
elif any(keyword in desc_upper for keyword in ['BOLT', 'STUD', 'NUT', 'SCREW', '볼트', '너트', '스터드']):
|
||||
classification_result = bolt_classifier.classify_bolt("", description, size_spec, length)
|
||||
print(f"BOLT 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
elif any(keyword in desc_upper for keyword in ['GASKET', 'GASK', '가스켓']):
|
||||
classification_result = gasket_classifier.classify_gasket("", description, size_spec, length)
|
||||
print(f"GASKET 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
elif any(keyword in desc_upper for keyword in ['GAUGE', 'SENSOR', 'TRANSMITTER', 'INSTRUMENT', '계기', '게이지']):
|
||||
classification_result = instrument_classifier.classify_instrument("", description, size_spec, length)
|
||||
print(f"INSTRUMENT 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
elif any(keyword in desc_upper for keyword in ['PIPE', 'TUBE', '파이프', '배관']):
|
||||
classification_result = pipe_classifier.classify_pipe("", description, size_spec, length)
|
||||
print(f"PIPE 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
else:
|
||||
# 2. 일반적인 분류 시도 (낮은 신뢰도 임계값)
|
||||
classification_result = flange_classifier.classify_flange("", description, size_spec, length)
|
||||
print(f"FLANGE 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
if classification_result.get("overall_confidence", 0) < 0.3:
|
||||
classification_result = valve_classifier.classify_valve("", description, size_spec, length)
|
||||
print(f"VALVE 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
if classification_result.get("overall_confidence", 0) < 0.3:
|
||||
classification_result = fitting_classifier.classify_fitting("", description, size_spec, length)
|
||||
print(f"FITTING 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
if classification_result.get("overall_confidence", 0) < 0.3:
|
||||
classification_result = pipe_classifier.classify_pipe("", description, size_spec, length)
|
||||
print(f"PIPE 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
if classification_result.get("overall_confidence", 0) < 0.3:
|
||||
classification_result = bolt_classifier.classify_bolt("", description, size_spec, length)
|
||||
print(f"BOLT 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
if classification_result.get("overall_confidence", 0) < 0.3:
|
||||
classification_result = gasket_classifier.classify_gasket("", description, size_spec, length)
|
||||
print(f"GASKET 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
if classification_result.get("overall_confidence", 0) < 0.3:
|
||||
classification_result = instrument_classifier.classify_instrument("", description, size_spec, length)
|
||||
print(f"INSTRUMENT 분류 결과: {classification_result.get('category', 'UNKNOWN')} (신뢰도: {classification_result.get('overall_confidence', 0)})")
|
||||
|
||||
print(f"최종 분류 결과: {classification_result.get('category', 'UNKNOWN')}")
|
||||
|
||||
# 재질 분류
|
||||
material_result = material_classifier.classify_material(description)
|
||||
|
||||
# 최종 결과 조합
|
||||
# schedule이 딕셔너리인 경우 문자열로 변환
|
||||
schedule_value = classification_result.get("schedule", "")
|
||||
if isinstance(schedule_value, dict):
|
||||
schedule_value = schedule_value.get("schedule", "")
|
||||
|
||||
final_result = {
|
||||
**material,
|
||||
"classified_category": classification_result.get("category", "UNKNOWN"),
|
||||
"classified_subcategory": classification_result.get("subcategory", ""),
|
||||
"material_grade": material_result.get("grade", "") if material_result else "",
|
||||
"schedule": schedule_value,
|
||||
"size_spec": classification_result.get("size_spec", ""),
|
||||
"classification_confidence": classification_result.get("overall_confidence", 0.0),
|
||||
"length": length # 길이 정보 추가
|
||||
}
|
||||
|
||||
# 카테고리별 상세 정보 추가
|
||||
category = classification_result.get("category", "")
|
||||
|
||||
if category == "PIPE":
|
||||
# PIPE 상세 정보 추출
|
||||
final_result["pipe_details"] = {
|
||||
"size_inches": size_spec,
|
||||
"schedule": classification_result.get("schedule", {}).get("schedule", ""),
|
||||
"material_spec": classification_result.get("material", {}).get("standard", ""),
|
||||
"manufacturing_method": classification_result.get("manufacturing", {}).get("method", ""),
|
||||
"length_mm": length * 1000 if length else 0, # meter to mm
|
||||
"outer_diameter_mm": 0.0, # 추후 계산
|
||||
"wall_thickness_mm": 0.0, # 추후 계산
|
||||
"weight_per_meter_kg": 0.0 # 추후 계산
|
||||
}
|
||||
elif category == "FITTING":
|
||||
# FITTING 상세 정보 추출
|
||||
final_result["fitting_details"] = {
|
||||
"fitting_type": classification_result.get("fitting_type", {}).get("type", ""),
|
||||
"fitting_subtype": classification_result.get("fitting_type", {}).get("subtype", ""),
|
||||
"connection_method": classification_result.get("connection_method", {}).get("method", ""),
|
||||
"pressure_rating": classification_result.get("pressure_rating", {}).get("rating", ""),
|
||||
"material_standard": classification_result.get("material", {}).get("standard", ""),
|
||||
"material_grade": classification_result.get("material", {}).get("grade", ""),
|
||||
"main_size": size_spec,
|
||||
"reduced_size": ""
|
||||
}
|
||||
elif category == "VALVE":
|
||||
# VALVE 상세 정보 추출
|
||||
final_result["valve_details"] = {
|
||||
"valve_type": classification_result.get("valve_type", {}).get("type", ""),
|
||||
"valve_subtype": classification_result.get("valve_type", {}).get("subtype", ""),
|
||||
"actuator_type": classification_result.get("actuation", {}).get("method", "MANUAL"),
|
||||
"connection_method": classification_result.get("connection_method", {}).get("method", ""),
|
||||
"pressure_rating": classification_result.get("pressure_rating", {}).get("rating", ""),
|
||||
"body_material": classification_result.get("material", {}).get("grade", ""),
|
||||
"size_inches": size_spec
|
||||
}
|
||||
elif category == "FLANGE":
|
||||
# FLANGE 상세 정보 추출
|
||||
final_result["flange_details"] = {
|
||||
"flange_type": classification_result.get("flange_type", {}).get("type", ""),
|
||||
"flange_subtype": classification_result.get("flange_type", {}).get("subtype", ""),
|
||||
"facing_type": classification_result.get("face_finish", {}).get("finish", ""),
|
||||
"pressure_rating": classification_result.get("pressure_rating", {}).get("rating", ""),
|
||||
"material_standard": classification_result.get("material", {}).get("standard", ""),
|
||||
"material_grade": classification_result.get("material", {}).get("grade", ""),
|
||||
"size_inches": size_spec
|
||||
}
|
||||
elif category == "BOLT":
|
||||
# BOLT 상세 정보 추출
|
||||
final_result["bolt_details"] = {
|
||||
"bolt_type": classification_result.get("fastener_type", {}).get("type", ""),
|
||||
"bolt_subtype": classification_result.get("fastener_type", {}).get("subtype", ""),
|
||||
"thread_standard": classification_result.get("thread_specification", {}).get("standard", ""),
|
||||
"diameter": classification_result.get("dimensions", {}).get("diameter", size_spec),
|
||||
"length": classification_result.get("dimensions", {}).get("length", ""),
|
||||
"thread_pitch": classification_result.get("thread_specification", {}).get("pitch", ""),
|
||||
"material_standard": classification_result.get("material", {}).get("standard", ""),
|
||||
"material_grade": classification_result.get("material", {}).get("grade", ""),
|
||||
"coating": ""
|
||||
}
|
||||
elif category == "GASKET":
|
||||
# GASKET 상세 정보 추출
|
||||
final_result["gasket_details"] = {
|
||||
"gasket_type": classification_result.get("gasket_type", {}).get("type", ""),
|
||||
"gasket_material": classification_result.get("gasket_material", {}).get("material", ""),
|
||||
"flange_size": size_spec,
|
||||
"pressure_rating": classification_result.get("pressure_rating", {}).get("rating", ""),
|
||||
"temperature_range": classification_result.get("gasket_material", {}).get("temperature_range", ""),
|
||||
"thickness": classification_result.get("size_info", {}).get("thickness", ""),
|
||||
"inner_diameter": classification_result.get("size_info", {}).get("inner_diameter", ""),
|
||||
"outer_diameter": classification_result.get("size_info", {}).get("outer_diameter", "")
|
||||
}
|
||||
elif category == "INSTRUMENT":
|
||||
# INSTRUMENT 상세 정보 추출
|
||||
final_result["instrument_details"] = {
|
||||
"instrument_type": classification_result.get("instrument_type", {}).get("type", ""),
|
||||
"measurement_type": "",
|
||||
"measurement_range": classification_result.get("measurement_info", {}).get("range", ""),
|
||||
"output_signal": classification_result.get("measurement_info", {}).get("signal_type", ""),
|
||||
"connection_size": size_spec,
|
||||
"process_connection": "",
|
||||
"accuracy_class": ""
|
||||
}
|
||||
|
||||
return final_result
|
||||
# parse_file과 classify_material_item 함수는 routers/files.py로 이동되었습니다
|
||||
|
||||
@app.get("/health")
|
||||
async def health_check():
|
||||
|
||||
Reference in New Issue
Block a user